API – Get Category Values

action – category

If a RecordType has been set-up as a Category, use this call to get a list of the available category values. This is a convenience to assist in providing an external application UI with a list of options to present to users in Forms with this Category in a drop-down field or similar.

Pass the action category, and the record type of the category (case-insensitive) in recordtype.

Sample Request

{ "account": *** your account id ***, "apikey": "*** your api key ***", "action": "category", "recordtype": "AcquirePipeline" }

Sample Response

{ "success": true, "values": [ "Booked", "Good Prospect", "Hot Prospect", "Lead", "Lost", "Seed" ] }

Get Started