Body
Required
-
dropshipProviderId
integer(int32) | null Dropship provider
-
dropshipmentId
integer(int32) | null Dropshipment
problem
object | null | array | boolean | integer | number | string Problem
-
purchaseId
integer(int32) | null Purchase
response
object | null | array | boolean | integer | number | string Response
-
status
string | null Status
Values are
error
,success
, orskipped
.
POST
/dropshipment-imports.json
curl \
--request POST 'http://api.example.com/v1/dropshipment-imports.json' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"dropshipProviderId":42,"dropshipmentId":42,"problem":{},"purchaseId":42,"response":{},"status":"error"}'
Request examples
{
"dropshipProviderId": 42,
"dropshipmentId": 42,
"problem": {},
"purchaseId": 42,
"response": {},
"status": "error"
}
Response examples (200)
{
"createdAt": "2025-05-04T09:42:00Z",
"dropshipProviderId": 42,
"dropshipmentId": 42,
"id": 42,
"problem": {},
"purchaseId": 42,
"response": {},
"status": "error",
"updatedAt": "2025-05-04T09:42:00Z"
}