Changebot
  • About
  • API reference
    • Updates
  • Specification
Powered by GitBook
On this page
  1. API reference

Updates

PreviousAPI reference

Last updated 3 months ago

Get published customer updates

get

Retrieves a list of published customer updates for a specific team identified by slug

Query parameters
slugstringRequired

Unique slug identifier for the team

Example: example-team
pageinteger · min: 1Optional

Page number for pagination

Default: 1Example: 1
limitinteger · min: 1 · max: 100Optional

Number of items per page

Default: 20Example: 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
  }
}