v1

latestOpenAPI 3.1.22026-08-0611530152.3 KB
Jobs

Get Job

Retrieve the current Job

get/jobs/{id}

Path parameters

idstring required

The job ID

Response

Successfully retrieved Job

idstring uuid

Unique identifier for the async operation

account_idstring uuid

ID of the account associated with this operation

resource_typestring

Type of resource being operated on

resource_idstring uuid

ID of the resource being operated on

resource_action'create' | 'update' | 'delete'

Action being performed on the resource

status'pending' | 'completed' | 'failed'

Current status of the async operation

created_atstring date-time

Timestamp when the operation was created

updated_atstring date-time

Timestamp when the operation was last updated

error_messagestring nullable

Error message if the operation failed, null otherwise

Example response

{
  "id": "5c2f59e8-826e-452c-b28d-27ef1f8b32a3",
  "account_id": "04575e13-f306-4262-95df-703e720ce65f",
  "resource_type": "oauth2_configuration",
  "resource_id": "c3c19266-2998-444d-9a95-7403afbfe605",
  "resource_action": "create",
  "status": "completed",
  "created_at": "2025-11-13T14:21:31Z",
  "updated_at": "2025-11-13T14:21:41Z"
}