Let the platform do the work

get_user_id

Overview

Retrieves the id of the user currently logged in.

Available APIs

  • SOAP
  • REST

Definition

get_user_id(session)

Parameters

Name Type Description
session String Session ID returned by a previous login call.

Result

Name Type Description
id String The users ID.

Change Log

Version Change

Examples

PHP

$get_user_id_parameters = array(
    //Session id
    "session" => $session_id,
);

Topics