Python
import requests url = "https://platform.ankra.app/org/helm/registries/{registry_name}/sync-jobs" headers = {"Authorization": "Bearer <token>"} response = requests.get(url, headers=headers) print(response.text)
{ "jobs": [ { "id": "<string>", "name": "<string>", "status": "<string>", "resource_kind": "<string>", "resource_name": "<string>", "created_at": "2023-11-07T05:31:56Z", "start_at": "2023-11-07T05:31:56Z", "stop_at": "2023-11-07T05:31:56Z", "summary": "<string>", "error_message": "<string>", "tasks": [] } ], "pagination": { "page": 123, "page_size": 123, "total_pages": 123, "total_count": 123 } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
x >= 1
1 <= x <= 100
Successful Response
Show child attributes