Crego APIs
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
APIs DocHome Page
Web Apps
  • Jupiter
  • Venus
  1. Contact Excel
  • 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
    • Update
    • List
    • Retrieve
    • Dedupe
    • Active
    • Inactive
    • Reject
    • Approve
  • Contact Excel
    • Export Contacts to Excel
      GET
    • Download Contact Excel Template
      GET
    • Import Contacts from Excel
      POST
  • BulkOps Tracking
    • Get BulkOps Status
  1. Contact Excel

Import Contacts from Excel

preprod
https://preprod.api.crego.io
preprod
https://preprod.api.crego.io
POST
/api/contacts/import-excel/
Last modified:2025-09-13 13:10:10
Upload an Excel file for asynchronous contact import. The file should follow the template format with multi-sheet structure. Returns a BulkOps tracking object for monitoring progress.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params multipart/form-data

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 POST 'https://preprod.api.crego.io/api/contacts/import-excel/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'file=@""'

Responses

🟢202Accepted
application/json
File upload successful, processing started
Body

Example
{
    "id": 123,
    "status": "pending",
    "content_type": 45,
    "uploaded_file": {
        "id": 456,
        "file_name": "contact_import_20240115_143022.xlsx",
        "file_size": 15360,
        "created_at": "2024-01-15T14:30:22.123456Z"
    },
    "system_generated_file": null,
    "started_at": null,
    "completed_at": null,
    "created_at": "2024-01-15T14:30:22.123456Z",
    "updated_at": "2024-01-15T14:30:22.123456Z",
    "created_by": 1
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠413413
Modified at 2025-09-13 13:10:10
Previous
Download Contact Excel Template
Next
Get BulkOps Status
Built with