Skip to main content
GET
/
v1
/
custom_fields
/
{id}
[DEPRECATED] Retrieves a Custom Field
curl --request GET \
  --url https://api.rootly.com/v1/custom_fields/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "custom_fields",
    "attributes": {
      "label": "<string>",
      "slug": "<string>",
      "shown": [
        "incident_form"
      ],
      "required": [
        "incident_form"
      ],
      "position": 123,
      "created_at": "<string>",
      "updated_at": "<string>",
      "kind": "<string>",
      "enabled": true,
      "description": "<string>",
      "default": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: options

Available options:
options

Response

custom_field found

data
object
required