Get Field

GET
/v1/workspaces/:workspace/fields/:field

Retrieve a single field by UUID

Path parameters

workspacestring Required

ID of your workspace

fieldstring Required

Field UUID

Get Field
curl "https://api.leadpush.io/v1/workspaces/:workspace/fields/:field" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {token}"
Response Example
{
"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"
}
}