action combell_get_provisioningjobs_job_id { label: "Detail of a provisioning job" description: "Provisioning failures may occur. Contact support in the event of a failure or wait for error resolution.
\nDo NOT retry provisioning until the job reports finished or cancelled." provider: combell method: GET path: "/provisioningjobs/{jobId}" encoding: json input: { type: "object" properties: { jobId: { type: "string" } job_id: { type: "string" format: "uuid" } } required: ["jobId", "job_id"] additionalProperties: false } output: { type: "object" properties: { completion: { type: "object" properties: { estimate: { type: "string" format: "date-time" description: "The estimated time when the job should be finished.
\nUnexpected delays can always occur.
\nThe value is subject to change during the provisioning." } } additionalProperties: false } id: { type: "string" description: "The id of the job." } status: { type: "string" description: "Current job status" enum: ["ongoing", "cancelled", "failed", "finished"] } } additionalProperties: false } }