cURL
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" } ] } ]
Get all custom-field
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Return all custom fields
The response is of type object[].
object[]