Async Job Object


Properties
idstringRead-onlyformat GUID

Job ID.


metadatastruct

Optional job metadata, used to store any parameters used during job execution, user-defined statuses, etc.


statusstring

Current job execution status.


countersCountersdeprecated - use counts instead

Current counters.


createdDatestringRead-onlyformat date-time

Date and time the job was created in ISO-8601 format.


updatedDatestringRead-onlyformat date-time

Date and time the job was last updated in ISO-8601 format.


ownerOwnerRead-onlydeprecated - use createdBy instead

Job owner.


createdByCreatedByRead-only

Job creator.


countsCounts

Current execution counts.

AsyncJob
JSON
{ "job": { "id": "076e0505-6944-4645-a248-80b197ee9cfd", "metadata": { "meta1": "value1" }, "status": "INITIALIZED", "counters": { "items_to_process": null, "items_succeeded": 0, "items_failed": 0, "error_count_by_code": {} }, "created_date": "2024-04-22T10:23:25.798Z", "updated_date": "2024-04-22T10:23:25.798Z", "owner": { "service_id": "338acb04-5b9b-4cdd-beb3-ea6739546d3a" } } }
Did this help?