Setup Repo

List

Retrieve a paginated list of Setup Repo records. Supports filtering, sorting, and search.

get/api/cp/setup/repo

Response

Successful response

idstring

Id

account_idinteger

Account Id

project_idstring

Project Id (references project.id)

versionstring

Version

approvedinteger

Approved

published_datestring date-time

Published Date

commit_messagestring

Commit Message

Example response

[
  {
    "id": 12345,
    "account_id": 1,
    "project_id": 1,
    "version": "example_version",
    "approved": 1,
    "published_date": "2025-01-17T10:30:00Z",
    "commit_message": "example_commit_message"
  }
]

Changes