Fetch a list of Change Logs.
GET {{baseUrl}}/v1/changelogs?limit=50&offset=0&searchText=<string>&q=<string>
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
limit | number | The number of results to retrieve. | |
offset | number | The offset of the results retrieved. The CDO Public API uses the offset field to determine the index of the first result retrieved, and will retrieve limit results from the offset specified. | |
searchText | string | The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions. | |
q | string | The query to execute. Use the Lucene Query Syntax to construct your query. |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Accept | string |
RESPONSES
status: OK
{"count":"\u003cinteger\u003e","limit":"\u003cinteger\u003e","offset":"\u003cinteger\u003e","items":[{"uid":"\u003cuuid\u003e","status":"UNKNOWN","entityUid":"\u003cuuid\u003e","events":[{"description":"\u003cstring\u003e","diff":"\u003cstring\u003e","username":"\u003cstring\u003e","date":"\u003cdateTime\u003e","action":"UNKNOWN","changeRequestUid":"\u003cuuid\u003e","changeRequestName":"\u003cstring\u003e"},{"description":"\u003cstring\u003e","diff":"\u003cstring\u003e","username":"\u003cstring\u003e","date":"\u003cdateTime\u003e","action":"UNKNOWN","changeRequestUid":"\u003cuuid\u003e","changeRequestName":"\u003cstring\u003e"}]},{"uid":"\u003cuuid\u003e","status":"UNKNOWN","entityUid":"\u003cuuid\u003e","events":[{"description":"\u003cstring\u003e","diff":"\u003cstring\u003e","username":"\u003cstring\u003e","date":"\u003cdateTime\u003e","action":"ERROR","changeRequestUid":"\u003cuuid\u003e","changeRequestName":"\u003cstring\u003e"},{"description":"\u003cstring\u003e","diff":"\u003cstring\u003e","username":"\u003cstring\u003e","date":"\u003cdateTime\u003e","action":"ERROR","changeRequestUid":"\u003cuuid\u003e","changeRequestName":"\u003cstring\u003e"}]}]}