GET api/CustomFieldAttachment/{id}
Fast method to get WorkflowCard by id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiCustomFieldAttachmentOutput| 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. |
Response 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"
}
application/xml, text/xml
Sample:
<ApiCustomFieldAttachmentOutput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <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> </ApiCustomFieldAttachmentOutput>