Contents

Get Custom Field List

Returns list of Custom Fields in the project.

Role

All

Method

GET

URL

/api/v2/projects/:projectIdOrKey/customFields

URL parameters

Parameter NameTypeDescription
projectIdOrKeyStringProject ID or Project Key

Response example

Status Line / Response Header

HTTP/1.1 200 OK
Content-Type:application/json;charset=utf-8

Response Body

[
    {
        "id": 1,
        "projectId": 5,
        "typeId": 6,
        "name": "custom",
        "description": "",
        "required": false,
        "applicableIssueTypes": [],
        "allowAddItem": false,
        "items": [
            {
                "id": 1,
                "name": "Windows 8",
                "displayOrder": 0
            },
            // ...
        ]
    },
    {
        "id": 2,
        "typeId": 1,
        "name": "Attribute for Bug",
        "description": "",
        "required": false,
        "applicableIssueTypes": [1]
    },
    // ...
]