Make Your First Request
Make your first request
For this example, we will be retrieving the available export fields for an account.
- Set request URL
-
[GET] https://uapi.demandbase.com/data/export/v1/fields - Set URL params
entityType = account - Set Authorization header
-
Authorization: Bearer your_JWT_token
-
- Resulting cURL request
-
curl --location 'https://uapi.demandbase.com/data/export/v1/fields?entityType=account' \ --header 'Authorization: Bearer your_JWT_token'
-
- Response
-
[ { "name": "{Account}.SEG_1052", "label": "MAS-Account-Tier (Segment)", "dataType": "String" }, {...} // Results truncated for this example ]
-
Updated 1 day ago