mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-09 20:37:50 +00:00
17 lines
585 B
YAML
17 lines
585 B
YAML
type: object
|
|
properties:
|
|
status:
|
|
type: string
|
|
enum:
|
|
- PENDING
|
|
- IN_PROGRESS
|
|
- COMPLETED
|
|
- ERROR
|
|
description: |
|
|
Returns the following values indicating the progress or result of the bulk upload job.
|
|
"PENDING" means the job is queued and waiting to be processed.
|
|
"IN_PROGRESS" means the job is currently being processed.
|
|
"COMPLETED" means the job has been completed without any errors.
|
|
"ERROR" means the job failed to process with errors.
|
|
null means job has been submitted to the source.
|
|
example: "PENDING" |