This object represents the result of an admin account creation operation.
| Field | Type | Description |
|---|---|---|
id_type | Number | ID representing a notification type from a predefined catalog. |
notification | Object | Dynamic object containing data specific to the given id_type. |
Example when id_type = 4
id_type = 4{
"id_type": 4,
"notification": {
"tokens": {
"publicKey": "pk_000000000000000000000000000000000000000000000000000000000000000",
"oauthToken": "0000000000000000000000000000000000000000000000000000000000000000",
"privateKey": "sk_000000000000000000000000000000000000000000000000000000000000000",
"refreshToken": "111111111111111111111111111111111111111111111111111111111111111"
},
"timestamp": "2025-10-22T17:22:08.590417",
"customerId": 11111,
"ecommerceId": 2
}
}| Field | Type | Description |
|---|---|---|
notification.tokens.publicKey | String | Public key of the account. |
notification.tokens.oauthToken | String | Authorization token of the account. |
notification.tokens.privateKey | String | Private key of the account. |
notification.tokens.refreshToken | String | Authorization refresh token of the account. |
notification.timestamp | String | Date of the account creation. |
notification.customerId | Number | Customer id of the account created. |
notification.ecommerceId | Number | Ecommerce id where the account was created. |