request-templates

Returns a RequestTemplate object.

get/request-templates/{request_template_id}

Path parameters

request_template_idstring uuid required

The ID of the request template.

Response

The requested request template.

request_template_idstring uuid required

The ID of the request template.

namestring required

The name of the request template.

Example response

{
  "request_template_id": "7c86c85d-0651-43e2-a748-d69d658418e8",
  "name": "Production access questions",
  "custom_fields": [
    {
      "name": "Why do you need this access?",
      "required": true,
      "metadata": {
        "callout_data": {
          "severity": "WARNING",
          "text": "This role grants access to production customer data."
        },
        "multi_choice_data": {
          "options": [
            "Incident response",
            "Scheduled maintenance"
          ]
        }
      }
    }
  ]
}

Changes