curl --request GET \
  --url https://api.splose.com/v1/custom-field/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "name": "<string>",
    "type": "Short text",
    "required": true,
    "createdAt": "2023-07-30T09:00:00.000Z",
    "updatedAt": "2023-07-30T09:00:00.000Z",
    "deletedAt": "2023-07-30T09:00:00.000Z",
    "options": [
      {
        "id": 123,
        "customFieldId": 123,
        "value": "<string>",
        "createdAt": "2023-07-30T09:00:00.000Z",
        "updatedAt": "2023-07-30T09:00:00.000Z",
        "deletedAt": "2023-07-30T09:00:00.000Z"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - text
Return all custom fields
id
number
required
name
string
required
type
enum<string>
required
Available options:
Short text,
Long text,
Single dropdown,
Multiple dropdown,
Multiple choice,
Numerical,
Date picker
createdAt
required

Object creation date time

Example:

"2023-07-30T09:00:00.000Z"

updatedAt
required

Object update date time

Example:

"2023-07-30T09:00:00.000Z"

deletedAt
required

Object archived date time

Example:

"2023-07-30T09:00:00.000Z"

required
boolean | null
options
object[]