Headers

Header name Description
Content-Type
required
application/json
X-API-KEY
required
YOUR_API_KEY

Params

Param name Description
project_id
required

Project ID

Validations:

  • Must be a String

field_group_id
required

Field group ID

Validations:

  • Must be a String

Examples

// Deleting default custom field group
DELETE /api/v2/projects/XgVfEM_Tjm2t0daSxDXD/custom_fields/32
200
{
  "custom_fields": {}
}
// If project is not found
DELETE /api/v2/projects/not-found-id/custom_fields/33
404
{
  "error": "project not found"
}
// If custom field group is not found
DELETE /api/v2/projects/xQsSClBqsO4IJgP4hedF/custom_fields/not-found-id
404
{
  "error": "Couldn't find FieldGroup with 'id'=not-found-id"
}

Errors

Code Description
401 Unauthorized
404 Not found
500 Internal Server Error
422 Missing parameters