Get All Dynamic Attributes
You can use this endpoint to retrieve a paginated list of all dynamic attribute definitions.
Request
GET /api/v1/dynamic-attributes
curl --request GET \
--url 'https://www.zep-online.de/zepinstanz/next/api/v1/dynamic-attributes' \
--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,
"created": "2024-01-15T10:30:00.000000Z",
"modified": "2024-01-15T10:30:00.000000Z"
},
{
"id": 2,
"name": "Skill Level",
"type": "select",
"required": false,
"description": "Employee skill level",
"options": ["Beginner", "Intermediate", "Advanced", "Expert"],
"default_value": "Beginner",
"created": "2024-02-01T14:20:00.000000Z",
"modified": "2024-02-01T14:20:00.000000Z"
}
]
}
Optional Parameters
- Name
limit
- Type
- integer
- Description
Attribute for limiting the number of entries per page.