Parameter | Required | Type | Description |
---|---|---|---|
id | Yes | integer | ID of the contact to get information on (the contact ID is generated automatically by the Notificore system when a contact is added). |
Parameter | Type | Description |
---|---|---|
id | integer | Contact ID on which the query for information was made. |
phone | integer | Contact phone number. |
fields | array | Contains the embedded custom fields parameters. |
created_at | datetime | Contact creation date ― set automatically by the Notificore system when a contact is added to the Contact Book. Display format ― Y-m-d H:i:s |
groups | array | Contains embedded parameters of the list to which the contact is added. |
hlr_status | string | Status of verifying the contact’s phone number against the HLR database. Possible values: sent, absent, active, unknown, failed. |
hlr_last_check | datetime | Date and time when the contact’s phone number was last verified against the HLR database. Display Format ― Y-m-d H:i:s |
{
"data": {
"id": 1,
"phone": 33601148802,
"fields": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"created_at": "2022-04-28 14:21:16",
"groups": [
{
"id": 1,
"name": "string",
"description": "string",
"default": 0,
"created_at": "2022-04-28 14:21:16"
}
],
"hlr_status": "string",
"hlr_last_check": "2022-04-28 14:21:16"
}
}