GET
/
objects
/
{object_name}
/
attributes
/
{attribute_name}
curl --request GET \
  --url https://api.unifygtm.com/data/v1/objects/{object_name}/attributes/{attribute_name} \
  --header 'x-api-key: <api-key>'
{
  "status": "success",
  "data": {
    "type": "Address",
    "api_name": "<string>",
    "display_name": "<string>",
    "description": "<string>",
    "is_required": true,
    "is_unique": true
  }
}

Authorizations

x-api-key
string
header
required

Path Parameters

object_name
string
required
attribute_name
string
required

Response

200
application/json

Response for a successful get operation.