Making your first API request
1
'Authorization: Token {Your authentication token}'2
{zone_url}/api/v2/data-stores?teamId={teamId}&pg%5BsortDir%5D=asc3
curl --location \
--request GET 'https://eu1.make.com/api/v2/data-stores?teamId=35&pg%5BsortDir%5D=asc' \
--header 'Content-Type: application/json' \
--header 'Authorization: Token 93dc8837-2911-4711-a766-59c1167a974d'{
"dataStores": [
{
"id": 15043,
"name": "Old data store",
"records": 10,
"size": "620",
"maxSize": "1048576",
"teamId": 35
},
{
"id": 13433,
"name": "New data store",
"records": 1,
"size": "48",
"maxSize": "1048576",
"teamId": 35
}
],
"pg": {
"sortBy": "name",
"limit": 10000,
"sortDir": "asc",
"offset": 0
}
}4
Last updated

