Bulk Import Payment Instructions Status

The bulk Import payment Instructions job status/progress can be obtained using the API.

GET /payments/payments/import/{job_id}

Body Parameters - Request

NameLocationTypeDescriptionRequired

job_id

Url path

string

The job id to fetch status for

Yes

Body Parameters - Response

NameTypeFormat / ValuesDescription

job_id

string

The job id assigned to this import

started_at

string

date-time

The time the import job started

completed_at

string

date-time

The time the import job completed

processed

integer

The total number of items processed successfully

total

integer

Total number of items in bulk

processing

integer

The number of items currently being processed

failed

integer

Total number of failed items

status

string

QUEUED, DONE

The current job status

progress

array

object

List of item progress

progress[]

object

progress[].row

integer

The index of the item

progress[].error

object

Information regarding error encountered for this item

progress[].status

string

FAILED, SUCCESS

The status of this item's import

Request Example

GET /payments/payments/import/76I_SRe9ToeDwSExCGrgtA

Response Examples

{
   "processed": 2,
   "completed_at": "2024-03-05T21:49:23.620174178Z",
   "total": 2,
   "job_id": "76I_SRe9ToeDwSExCGrgtA",
   "processing": 0,
   "started_at": "2024-03-05T21:49:22.444288513Z",
   "progress": [
      {
         "id": "demo:standalone:1709645902::zCrls1r6SbSLmJHRdihevg",
         "row": 0,
         "status": "SUCCESS"
      },
      {
         "id": "demo:standalone:1709645902::lt5Shcn0QquHLVwRDTB0Mw",
         "row": 1,
         "status": "SUCCESS"
      }
   ],
   "failed": 0,
   "status": "DONE"
}

Last updated

© All rights reserved to papaya global 2024