CreateAccountUiResponse
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"]
urlstringrequired
Partner UI form URL
This URL should be used to open the Partner UI form
Possible values: non-empty
Example:
https://api-example.paydata-api.com/partner-ui/kjsd7bwu5
CreateAccountUiResponse
{
"id": "kjsd7bwu5",
"expiresIn": 3600,
"createdAt": "2023-01-26T10:01:11.123",
"expiresAt": "2023-01-26T10:21:11.123",
"accountId": "5dshw36",
"accountTypeIds": [
"amazon",
"paypal"
],
"url": "https://api-example.paydata-api.com/partner-ui/kjsd7bwu5"
}