Skip to content

Get Tags from a User Form

Endpoint: GET /api/human/template/{name}/tags

Retrieves the tags associated with a user form.

Path parameters

Parameter Description Type Required/ Optional
name The name of the user form from which the tags are to be retrieved. string Required.

Response

Returns an array of tag objects, each containing a key-value pair.

Examples

Get tags from a user form

Request

curl -X 'GET' \
  'https://<YOUR-SERVER-URL>/api/human/template/EmployeeOnboarding/tags' \
  -H 'accept: application/json' \
  -H 'X-Authorization: <TOKEN>'

Response

[
  {
    "key": "backend",
    "value": "PR"
  },
  {
    "key": "dev",
    "value": "automation"
  }
]