API.getSubscriberInfos

This action allows you to get a subscriber's data.

Request

Note: This action is only available to PREMIUM and PLATINUM members. Click here to upgrade.
The API key must have the subscribers_read access right.
Name Type Description
apikey[required] string API public key
signature[required] string Signature of the request. See how to sign your requests.
expires timestamp UNIX timestamp for request expiration.
output string Format of the response. Either XML (default), JSON or PHP.
subscription_id[required] integer ID of the subscription.
login[required] string Login of the subscriber.

Response

Returns a subscriber.

Example responses

<response> <requestid>...</requestid> <requests>...</requests> <status>ok</status> <content> <AccountID>...</AccountID> <SubscriptionID>...</SubscriptionID> <LastName>...</LastName> <FirstName>...</FirstName> <Email>...</Email> <Login>...</Login> <Password>...</Password> <IsActive>...</IsActive> <Creation>...</Creation> <Modification>...</Modification> <LastLogin>...</LastLogin> <Extras>...</Extras> </content> </response>
{ "response": { "requestid": ..., "requests": ..., "status": "ok", "content": { "AccountID": ..., "SubscriptionID": ..., "LastName": ..., "FirstName": ..., "Email": ..., "Login": ..., "Password": ..., "IsActive": ..., "Creation": ..., "Modification": ..., "LastLogin": ..., "Extras": ..., } } }
[ "response" => [ "requestid" => ..., "requests" => ..., "status" => "ok", "content" => [ "AccountID" => ..., "SubscriptionID" => ..., "LastName" => ..., "FirstName" => ..., "Email" => ..., "Login" => ..., "Password" => ..., "IsActive" => ..., "Creation" => ..., "Modification" => ..., "LastLogin" => ..., "Extras" => ..., ] ] ]

Error codes

See the error code section.