API reference
Platform
- Search
- Users
- Teams
- Tickets
- Tags
- Ticket tags
- Accounts
- Forms
- Comments
- Emoji actions
- Custom fields
- Custom object fields
- Custom objects
- Object records
- Views
- Views types
- Draft tickets
- Storage
- Reactions
Workflows
- Workflows
Apps platform
- App creation
- App installation
- App uninstallation
- App reinstallation
- Incoming webhook
Custom fields
Search custom field using name
GET
/
v1
/
custom-field
/
search
Copy
Ask AI
curl --request GET \
--url https://platform.thena.ai/v1/custom-field/search \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"data": [
{
"name": "<string>",
"uid": "<string>",
"organizationId": "<string>",
"source": "ticket",
"fieldType": "single_line",
"options": [
"<string>"
],
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"isActive": true,
"teamId": "<string>",
"autoAddToAllForms": true,
"hintText": "<string>",
"placeholderText": "<string>",
"mandatoryOnCreation": true,
"mandatoryOnClose": true,
"visibleToCustomer": true,
"editableByCustomer": true,
"defaultValue": "<string>"
}
],
"status": true,
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
Authorizations
Enter your API key
Response
200
application/json
Operation successful
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://platform.thena.ai/v1/custom-field/search \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"data": [
{
"name": "<string>",
"uid": "<string>",
"organizationId": "<string>",
"source": "ticket",
"fieldType": "single_line",
"options": [
"<string>"
],
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"isActive": true,
"teamId": "<string>",
"autoAddToAllForms": true,
"hintText": "<string>",
"placeholderText": "<string>",
"mandatoryOnCreation": true,
"mandatoryOnClose": true,
"visibleToCustomer": true,
"editableByCustomer": true,
"defaultValue": "<string>"
}
],
"status": true,
"message": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
Assistant
Responses are generated using AI and may contain mistakes.