LIST EXISTING VALUE TABLES
To get a list of all currently existing value tables:
curl -X GET \
https://YOUR_STACK.datatap.adverity.com/api/value-tables \
-H 'Authorization: Token TOKEN_VALUE' \
Result
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 1,
"stack_id": 2,
"name": "Available Dates",
"provider": null,
"entries": [
{
"id": 1,
"value": "2015-11-23",
"metadata": null
},
{
"id": 2,
"value": "2015-11-22",
"metadata": null
},
{
"id": 3,
"value": "2015-11-09",
"metadata": null
},
{
"id": 4,
"value": "2015-11-08",
"metadata": null
}
]
}
]
Comments
0 comments
Article is closed for comments.