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

Examples

// Successful request
GET /api/v2/projects/7uO-3RP8vfPvJSdamrhs/custom_fields
200
{
  "custom_fields": {
    "20": {
      "20": "test_value"
    },
    "21": [
      {
        "cfg_id": 13,
        "21": "test_value"
      }
    ]
  }
}
// If project is not found
GET /api/v2/projects/not-found-id/custom_fields
404
{
  "error": "project not found"
}

Errors

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