CSV Import
POSThttps://api.goodsdelivery.io/v1/csv/import
Authorization: x-api-key
name: x-api-keytype: apiKeyscopes: brand
in: header
Use this endpoint to bulk create deliveries or returns from CSV. Required a CSV file with headers:
jobType,serviceType,brandId,externalId,packagesTotalValueUsd,addons,note,scheduledDate,customerFirstName,customerLastName,customerPhone,customerEmail,pickUpName,pickUpAddress1,pickUpAddress2,pickUpCity,pickUpZipCode,pickUpState,pickUpCountry,pickUpNote,dropOffName,dropOffAddress1,dropOffAddress2,dropOffCity,dropOffZipCode,dropOffState,dropOffCountry,dropOffNote
Some headers are optional - the same as rules as in CreateDelivery/CreateReturn endpoints apply.
Request
- text/csv
Body
required
- string
Responses
- 200
- 401
Response with created IDs and list of errors
- application/json
- Schema
- Example (from schema)
Schema
rows object[]required
{
"rows": [
{
"success": true,
"rowNumber": 0,
"createdId": "string",
"createdShortId": "string",
"errors": [
"string"
]
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
Human readable error message.
code stringrequired
Machine readable error message.
more url
More help on the error here.
{
"message": "string",
"code": "string",
"more": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST 'https://api.goodsdelivery.io/v1/csv/import' \
-H 'Content-Type: text/csv' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>' \
--data-raw ''
ResponseClear