Get Dynamic Attribute Details
You can use this endpoint to retrieve the details of a specific dynamic attribute definition.
Request
GET /api/v1/dynamic-attributes/{id}
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/dynamic-attributes/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}'
Response
{
"data": {
"id": 1,
"name": "Department Code",
"type": "string",
"required": true,
"description": "Internal department identification code",
"options": null,
"default_value": null,
"validation_rules": {
"min_length": 2,
"max_length": 10,
"pattern": "^[A-Z0-9]+$"
},
"created": "2024-01-15T10:30:00.000000Z",
"modified": "2024-01-15T10:30:00.000000Z"
}
}
Path Parameters
- Name
id
- Type
- integer
- Description
The dynamic attribute definition ID.