Identification linked to account [beta]
This event occurs when an identification is linked to an account.
Type: object
Domain: account
Event: identification_link
Version: 1
|
account_id required
Title: Account ID
Description: Unique numeric account ID.
Type: integer
entity_id required
Title: Entity ID
Description: Unique numeric entity ID.
Type: integer
identification_id required
Title: Identification ID
Description: Unique numeric identification ID.
Type: integer
is_main_identification required
Title: Account's main identification
Description: Flag indicating if this identification is the account's main identification.
Type: boolean
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://example.com/root.json",
"type": "object",
"title": "Identification linked to account [beta]",
"description": "This event occurs when an identification is linked to an account.",
"required": [
"account_id",
"entity_id",
"identification_id",
"is_main_identification"
],
"properties": {
"account_id": {
"type": "integer",
"title": "Account ID",
"description": "Unique numeric account ID."
},
"entity_id": {
"type": "integer",
"title": "Entity ID",
"description": "Unique numeric entity ID."
},
"identification_id": {
"type": "integer",
"title": "Identification ID",
"description": "Unique numeric identification ID."
},
"is_main_identification": {
"type": "boolean",
"title": "Account's main identification",
"description": "Flag indicating if this identification is the account's main identification."
}
}
}
Updated about 1 month ago