Tag List API
Tags APIs
Tag List API
Retrieve the list of organization tags available for tagging invoices, vendors, and line items
Tag List API
Documentation Index
Fetch the complete documentation index at: https://docs.pazy.io/llms.txt
Use this file to discover all available pages before exploring further.
Authentication
All requests require an API key in the request headers. Headers:Request
Content-Type:application/json
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | No | Number of records to return. Min 1, Max 100. |
cursor | string | No | Cursor for pagination. |
Code Examples
Success Response
HTTP Status:200 OK
Response Fields:
| Field | Type | Description |
|---|---|---|
ok | boolean | Indicates whether the request was successful |
data | object | Contains the tag list response data |
data.tags | array | List of tags configured for the organization |
data.tags[].id | string | Unique slug identifier for the tag (use this as tagSlug in the Tag Detail API) |
data.tags[].name | string | Display name of the tag |
data.context | object | Pagination metadata |
data.context.hasMore | boolean | Indicates whether there are more tags to fetch |
data.context.nextCursor | string | Cursor to fetch the next page |
Response Example
Error Responses
Authentication Errors
HTTP Status:401 Unauthorized
Permission Errors
HTTP Status:403 Forbidden
Internal Error
HTTP Status:500 Internal Server Error
Best Practices
- Use the
id(slug) returned for a tag as thetagSlugpath parameter in the Tag Detail API to retrieve the available values for a tag - Tags are organization-scoped — only tags configured under your organization are returned