Редактирование поля контакта
Метод для редактирования пользовательского поля контакта:
- изменение названия поля
- изменение описания поля.
Для редактирования поля контакта:
PATCH http://one-api.notificore.ru/api/contacts/fields/{id}
Request parameters
Parameter | Required | Type | Default | Description |
---|---|---|---|---|
id | Yes | integer | No | ID of the custom contact field to edit |
name | No | string | No | Custom contact field name |
description | No | string | No | Custom contact field description |
is_visible | No | boolean | No | Display the field in the personal account in the Contact Book: value true or false |
Request sample
{ "name": "string" }
Response parameters
Parameter | Type | Description |
---|---|---|
id | int | Custom contact field ID |
type | string | Field type. Possible values: - string – for a field with “Text” type - integer – for a field with “Number” type - datetime – for a field with “Date and time” type |
name | string | Custom contact field name |
description | null|string | Custom contact field description |
is_visible | boolean | Display the field in the personal account in the Contact Book: value true or false |
Если запрос успешен, вы получите ответ:
{ "data": { "id": 26130, "name": "Страна", "type": "number", "description": "The country name", "is_visible": true } }