Retrieve a paginated list of migrations within your organization
cURL
curl --request GET \ --url https://worker.anon.com/api/v1/migrations \ --header 'Authorization: Bearer <token>'
{ "results": [ { "object": "migration", "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "created": "2023-11-07T05:31:56Z", "status": "NOT_READY", "created_by_user_id": "<string>", "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a" } ], "page": { "size": 123, "total": 123 } }
Bearer token authentication
Page number for pagination (starts at 1)
x >= 1
Number of migrations per page (max 100)
1 <= x <= 100
Success
The response is of type object.
object
Was this page helpful?