GET Async/{clientId}/Export/{accessToken}/Status

Returns the status of your request. If a callback URL is provided with your request, MyPreferences will POST the status to the callback URL.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

PossibleNow ClientId

string

Required

accessToken

AccessToken to check the status of

integer

Required

Body Parameters

None.

Response Information

Response Codes

HTTP Status CodeTextDescription
400 Bad Request The request was invalid and cannot be processed. This may be a result of a malformed request. You must update the request before trying again.
401 Unauthorized Authentication credentials are missing or incorrect. You must verify your ClientId, UserId, and Authorization Scheme before trying again.
403 Forbidden The authentication credentials were insufficient to grant access to the requested resource. In most cases, your user may not have the appropriate permissions to access the requested resource. Verify User Group permissions for your user before trying again.
404 Not Found The requested resource cannot be found. Most errors in this category are returned when a resource specified on the URL path is not found. In certain instances, it is also returned when a parameter specified in the request body is also not found. See error description for more details.
500 Internal Server Error The server encountered an unexpected condition that prevented it from fulfilling the request. Notify PossibleNOW Support if it’s a continuous occurrence.
503 Service Unavailable The server is unable to handle your request due to a temporary condition. You must delay your request for some time before trying again. Notify PossibleNOW Support if it’s a continuous occurrence

Resource Description

AsyncApiDataExportStatusResult
NameDescriptionTypeAdditional information
AccessToken

integer
Status

string
RowCount

integer
ByteCount

integer

Response Formats

application/json, text/json, application/json-patch+json

Sample:
{
  "AccessToken": 1,
  "Status": "sample string 2",
  "RowCount": 1,
  "ByteCount": 1
}

application/xml, text/xml

Sample:
<AsyncApiDataExportStatusResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PossibleNow.Profiles.DataExportCore.Classes">
  <AccessToken>1</AccessToken>
  <ByteCount>1</ByteCount>
  <RowCount>1</RowCount>
  <Status>sample string 2</Status>
</AsyncApiDataExportStatusResult>