Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. BulkOps Tracking
  • Omni
  • Contact APIs
  • NameSpace
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Delete
      DELETE
  • Address
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Delete
      DELETE
  • Bank
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Delete
      DELETE
  • Props
    • Update Props
      PUT
    • Get Props
      GET
    • Delete Props
      DELETE
  • Relation
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Delete
      DELETE
  • Contact
    • Create
      POST
    • Update
      PATCH
    • List
      GET
    • Retrieve
      GET
    • Dedupe
      POST
    • Active
      PUT
    • Inactive
      PUT
    • Reject
      PUT
    • Approve
      PUT
  • Contact Excel
    • Export Contacts to Excel
    • Download Contact Excel Template
    • Import Contacts from Excel
  • BulkOps Tracking
    • Get BulkOps Status
      GET
  1. BulkOps Tracking

Get BulkOps Status

preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
GET
/api/bulk-ops/{id}/
Last modified:2025-09-13 13:10:10
Get the current status of a bulk operation by ID. Use this to track the progress of Excel import operations.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://preprod.api.crego.io/api/bulk-ops//' \
--header 'Authorization: Bearer <token>'

Responses

🟢200OK
application/json
BulkOps status retrieved successfully
Body

Examples
{
    "id": 123,
    "status": "processing",
    "content_type": 45,
    "uploaded_file": {
        "id": 456,
        "file_name": "contact_import_20240115_143022.xlsx"
    },
    "system_generated_file": null,
    "started_at": "2024-01-15T14:30:25.123456Z",
    "completed_at": null,
    "created_at": "2024-01-15T14:30:22.123456Z"
}
🟠404Record Not Found
Modified at 2025-09-13 13:10:10
Previous
Import Contacts from Excel
Built with