Get a record type

Description

Retrieve a single record type.

Request

HTTP Method: GET

Parameter Description
record_type_id The ID of the record type to retrieve.
curl -X GET \
  https://<<META.tenant.domain>>/api/v1/record_types/<<record_type_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return a JSON object representing the specified record type.

Field description

Parameter Description
id The record type ID.
name The record type name.
team_id ID of team to which the record type belongs.

Sample response

{
  "id": 1,
  "name": "record type name",
  "team_id": 1
}
Was this helpful?