Custom fields
Get all custom field types
Introduction
- API Reference
- Platform
- Platform APIs
- Login & sign up
- Organizations
- SLA duration
- Users
- Teams
- Tickets
- Comments & reactions
- Custom fields
- Forms
- Draft tickets
- Accounts & contacts
- Custom objects
- Workflows
- SLA
- Storage
- Notifications
Custom fields
Get all custom field types
GET
/
v1
/
custom-field
/
types
curl --request GET \
--url https://platform.thena.ai/v1/custom-field/types \
--header 'Authorization: Bearer <token>' \
--header 'x-org-id: <api-key>'
{
"data": {
"text": [
"<string>"
],
"numeric": [
"<string>"
],
"choice": [
"<string>"
],
"date": [
"<string>"
],
"user": [
"<string>"
],
"specialized": [
"<string>"
],
"file": [
"<string>"
],
"calculated": [
"<string>"
],
"lookup": [
"<string>"
],
"geographic": [
"<string>"
],
"rating": [
"<string>"
],
"toggle": [
"<string>"
]
},
"status": true,
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
Authorizations
Enter JWT bearer token
Enter organization ID
Response
200
application/json
Operation successful
curl --request GET \
--url https://platform.thena.ai/v1/custom-field/types \
--header 'Authorization: Bearer <token>' \
--header 'x-org-id: <api-key>'
{
"data": {
"text": [
"<string>"
],
"numeric": [
"<string>"
],
"choice": [
"<string>"
],
"date": [
"<string>"
],
"user": [
"<string>"
],
"specialized": [
"<string>"
],
"file": [
"<string>"
],
"calculated": [
"<string>"
],
"lookup": [
"<string>"
],
"geographic": [
"<string>"
],
"rating": [
"<string>"
],
"toggle": [
"<string>"
]
},
"status": true,
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}