POST api/CustomFieldAttachment
Post list of WorkflowCards.
Request Information
URI Parameters
None.
Body Parameters
Collection of ApiCompanyCustomDataAttachmentPOST| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| mark_to_delete | boolean |
None. |
|
| id_person | integer |
None. |
|
| id_company_custom_field | integer |
None. |
|
| id_company_custom_field_data | integer |
None. |
|
| google_drive_file_id | string |
None. |
|
| google_drive_connection_id | integer |
None. |
|
| data_base64 | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"id": 1,
"name": "sample string 2",
"mark_to_delete": true,
"id_person": 4,
"id_company_custom_field": 5,
"id_company_custom_field_data": 1,
"google_drive_file_id": "sample string 6",
"google_drive_connection_id": 1,
"data_base64": "sample string 7"
},
{
"id": 1,
"name": "sample string 2",
"mark_to_delete": true,
"id_person": 4,
"id_company_custom_field": 5,
"id_company_custom_field_data": 1,
"google_drive_file_id": "sample string 6",
"google_drive_connection_id": 1,
"data_base64": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfApiCompanyCustomDataAttachmentPOST xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ApiCompanyCustomDataAttachmentPOST>
<id>1</id>
<name>sample string 2</name>
<mark_to_delete>true</mark_to_delete>
<id_person>4</id_person>
<id_company_custom_field>5</id_company_custom_field>
<id_company_custom_field_data>1</id_company_custom_field_data>
<google_drive_file_id>sample string 6</google_drive_file_id>
<google_drive_connection_id>1</google_drive_connection_id>
<data_base64>sample string 7</data_base64>
</ApiCompanyCustomDataAttachmentPOST>
<ApiCompanyCustomDataAttachmentPOST>
<id>1</id>
<name>sample string 2</name>
<mark_to_delete>true</mark_to_delete>
<id_person>4</id_person>
<id_company_custom_field>5</id_company_custom_field>
<id_company_custom_field_data>1</id_company_custom_field_data>
<google_drive_file_id>sample string 6</google_drive_file_id>
<google_drive_connection_id>1</google_drive_connection_id>
<data_base64>sample string 7</data_base64>
</ApiCompanyCustomDataAttachmentPOST>
</ArrayOfApiCompanyCustomDataAttachmentPOST>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |