Use this API call to iterate or run a block of code repeatedly for all tags in an organization.
Request
GET /api/v1/enterprises/<enterprise_id>/tags
Parameters
Request |
|
|
enterprise_id |
string |
The ID of the organization |
count |
integer |
The number of tags ranging between 5 and 100. This indicates the number of tags to be returned in one page. By default 50 tags information is returned in one page. |
cursor |
string |
Fetches the next page of data |
Response
1 {
2 "data": <list[Tag]>,
3 "meta": {
4 "nextCursor": "eyJvZmZzZXQiOiAxMn0="
5 }
6 }
Comments
Article is closed for comments.