Admin Account Created Notification

This object represents the result of an admin account creation operation.


FieldTypeDescription
id_typeNumberID representing a notification type from a predefined catalog.
notificationObjectDynamic object containing data specific to the given id_type.

Example when 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
  }
}

FieldTypeDescription
notification.tokens.publicKeyStringPublic key of the account.
notification.tokens.oauthTokenStringAuthorization token of the account.
notification.tokens.privateKeyStringPrivate key of the account.
notification.tokens.refreshTokenStringAuthorization refresh token of the account.
notification.timestampStringDate of the account creation.
notification.customerIdNumberCustomer id of the account created.
notification.ecommerceIdNumberEcommerce id where the account was created.