Skala
Custom field collections

Create a new custom field collection

Adds a new custom field collection record to the database.

POST
/api/custom_field_collections

Adds a new custom field collection record to the database.

AuthorizationBearer <token>

In: header

Request Body

application/json

The new CustomFieldCollection resource

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.skalasuite.com/api/custom_field_collections" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{
  "id": 0,
  "name": "string",
  "customFields": [
    {
      "id": 0,
      "name": "string",
      "isActive": true
    }
  ],
  "isActive": true
}
Empty
Empty