Repositories
Operations for Repositories
List repositories
Authorizations
Path parameters
orgkeepIDstringRequired
Organization identifier
Query parameters
limitinteger · min: 1 · max: 1000OptionalDefault:
Maximum number of items to return (1-1000)
10
cursorstringOptional
Cursor for pagination. Use the value from the 'nextCursor' field of the previous response.
Responses
200
Successful response
application/json
400
Bad request
application/json
401
Unauthorized
application/json
500
Internal server error
application/json
get
GET /api/orgkeep/v4/{orgkeepID}/repositories HTTP/1.1
Host: matrix.ag5.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"data": [
{
"code": "text",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
],
"pagination": {
"hasMore": true,
"limit": 1,
"nextCursor": "text",
"total": 1
}
}
Get a single repository by ID
Authorizations
Path parameters
orgkeepIDstringRequired
Organization identifier
idstringRequired
Repository ID
Responses
200
Successful response
application/json
401
Unauthorized
application/json
404
Not found
application/json
500
Internal server error
application/json
get
GET /api/orgkeep/v4/{orgkeepID}/repositories/{id} HTTP/1.1
Host: matrix.ag5.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"code": "text",
"id": "123e4567-e89b-12d3-a456-426614174000"
}
Was this helpful?