GetSeller
Definition
Use this call to get seller information by the current user ID.
Request URI: https://api.sellercenter.lazada.sg?Action=GetSeller
Parameters
Field | Type | Description |
---|---|---|
Action | string | GetSeller Name of the API that is to be called. Mandatory. |
Format | string | The response format, with XML as the default. Can be XML or JSON. Optional. |
Timestamp | datetime | The current time in ISO8601 format (e.g., Timestamp=2016-04-01T10:00:00+02:00 for Berlin). Mandatory. |
UserID | string | The ID of the user making the call. Mandatory. |
Version | string | The API version against which this call is to be executed. The current version is "1.0". Mandatory. |
Signature | string | The cryptographic signature, authenticating the request. You must create this value by computing the SHA256 hash of the request, using the API key of the user specified in the UserID parameter. Mandatory. |
Result sample
<?xml version="1.0" encoding="UTF-8"?>
<SuccessResponse>
<Head>
<RequestAction>GetSeller</RequestAction>
<RequestId>0bb6885a15242052952821948eedd5</RequestId>
<ResponseType>Sender</ResponseType>
<Timestamp>2018-04-20T06:21:33+00:00</Timestamp>
</Head>
<Body>
<SellerId>100039446</SellerId>
<ShortCode>SG******</ShortCode>
<Email>[email protected]</Email>
<Name>Shop name</Name>
<NameCompany>Company name</NameCompany>
<Cb>false</Cb>
</Body>
</SuccessResponse>
Updated over 6 years ago