List all custom field values

To retrieve custom deal field values, the following permissions are required.

  • Deal permission: the user should have permission to manage deals.
  • Pipeline-specific permission: the user should have permission to manage the pipeline that the deal belongs to. If the user does not have the permission to manage the pipeline, limited deal data are returned with only id, title, and isDisabled set to 1.
{
    "dealCustomFieldData": [
        {
            "id": "3",
            "dealCustomFieldMetumId": 1,
            "dealId": 1,
            "customFieldId": 1,
            "createdTimestamp": "2018-11-06 02:26:07",
            "updatedTimestamp": "2018-11-06 02:26:07",
            "fieldValue": "test title",
            "links": {
                "deal": "https://:account.api-us1.com/api/:version/dealCustomFieldData/3/deal",
                "dealCustomFieldMetum": "https://:account.api-us1.com/api/:version/dealCustomFieldData/3/dealCustomFieldMetum"
            }
        },
        {
            "id": "4",
            "dealCustomFieldMetumId": 1,
            "dealId": 3,
            "customFieldId": 1,
            "createdTimestamp": "2018-11-06 02:26:51",
            "updatedTimestamp": "2018-11-06 02:26:51",
            "fieldValue": "test title",
            "links": {
                "deal": "https://:account.api-us1.com/api/:version/dealCustomFieldData/4/deal",
                "dealCustomFieldMetum": "https://:account.api-us1.com/api/:version/dealCustomFieldData/4/dealCustomFieldMetum"
            }
        },
        {
            "id": "5",
            "dealCustomFieldMetumId": 1,
            "dealId": 2,
            "customFieldId": 1,
            "createdTimestamp": "2018-11-06 02:27:05",
            "updatedTimestamp": "2018-11-06 02:27:05",
            "fieldValue": "test title",
            "links": {
                "deal": "https://:account.api-us1.com/api/:version/dealCustomFieldData/5/deal",
                "dealCustomFieldMetum": "https://:account.api-us1.com/api/:version/dealCustomFieldData/5/dealCustomFieldMetum"
            }
        },
        {
            "id": "1",
            "dealCustomFieldMetumId": 5,
            "dealId": 2,
            "customFieldId": 5,
            "createdTimestamp": "2018-10-29 20:40:38",
            "updatedTimestamp": "2018-11-06 02:21:36",
            "fieldValue": "New title",
            "links": {
                "deal": "https://:account.api-us1.com/api/:version/dealCustomFieldData/1/deal",
                "dealCustomFieldMetum": "https://:account.api-us1.com/api/:version/dealCustomFieldData/1/dealCustomFieldMetum"
            }
        }
    ]
}
Language
Authorization
Header
URL