Updates
Retrieves a list of published customer updates for a specific team identified by slug
Query parameters
slugstringRequiredExample:
Unique slug identifier for the team
example-team
pageinteger · min: 1OptionalDefault:
Page number for pagination
1
Example: 1
limitinteger · min: 1 · max: 100OptionalDefault:
Number of items per page
20
Example: 20
Responses
200
Successful operation
application/json
404
Team slug not found
application/json
429
Too many requests - rate limit exceeded (4 requests per minute)
application/json
get
GET /api/v1/updates HTTP/1.1
Host: app.changebot.ai
Accept: */*
{
"data": [
{
"id": 123,
"type": "customer_update",
"attributes": {
"title": "New Feature Announcement",
"content": "We're excited to announce our latest feature...",
"published_at": "2025-02-25T12:00:00Z"
},
"links": {
"self": "https://app.changebot.ai/api/v1/updates/123"
}
}
],
"links": {
"self": "https://app.changebot.ai/api/v1/updates?page=1&limit=20",
"first": "https://app.changebot.ai/api/v1/updates?page=1&limit=20",
"last": "https://app.changebot.ai/api/v1/updates?page=3&limit=20",
"next": "https://app.changebot.ai/api/v1/updates?page=2&limit=20",
"prev": "https://app.changebot.ai/api/v1/updates?page=1&limit=20"
},
"meta": {
"current_page": 1,
"total_pages": 3,
"total_count": 50,
"limit": 20
}
}
Last updated