Get Field
Retrieve a single custom field from your workspace. The field path parameter accepts the field UUID.
GET
/v1/fields/:fieldRetrieve a single field by UUID
Path parameters
fieldstring Required Field UUID
Retrieve a single custom field from your workspace. The field path parameter accepts the field UUID.
/v1/fields/:fieldRetrieve a single field by UUID
fieldstring Required Field UUID
curl "https://api.leadpush.io/v1/fields/:field" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {token}"
{
"data": {
"uuid": "<field_uuid>",
"name": "company_name",
"type": "text",
"format": {
"text": "url",
"pattern": null,
"iso_format": null
},
"created_at": "2021-01-01T00:00:00.000Z"
}
}