Skip to main content

GetAccountUiStatusResponse

idstringrequired

Partner UI session ID

This ID should be used to get the account creation status and to obtain the account ID

Possible values: non-empty

Example: kjsd7bwu5
expiresInint32required

Partner UI session validity period in seconds

Example: 3600
createdAtdate-timerequired

Partner UI session creation date and time

Example: 2023-01-26T10:01:11.123
expiresAtdate-timerequired

Partner UI session expiry date and time

Example: 2023-01-26T10:21:11.123
accountIdstringnullable

Account ID

Example: 5dshw36
accountTypeIdstringnullabledeprecated

Account type ID

This field is deprecated and will be removed in the future. Use accountTypeIds instead.

Example: amazon
accountTypeIdsstring[]nullable

Account type IDs

Example: ["amazon","paypal"]
statusAccountUiStatus (string)required

Partner UI session status

  • Unopened - the UI form has not been opened yet
  • Opened - the UI form has been opened
  • Expired - the session has expired
  • Canceled - the session has been canceled by the user
  • Success - the account has successfully been created or updated

Possible values: [Unopened, Opened, Canceled, Expired, Success]

GetAccountUiStatusResponse
{
"id": "kjsd7bwu5",
"expiresIn": 3600,
"createdAt": "2023-01-26T10:01:11.123",
"expiresAt": "2023-01-26T10:21:11.123",
"accountId": "5dshw36",
"accountTypeIds": [
"amazon",
"paypal"
],
"status": "Unopened"
}