POST /importers.json

POST /importers.json
application/json

Body Required

Responses

POST /importers.json
curl \
 -X POST http://api.example.com/v1/importers.json \
 -H "Content-Type: application/json" \
 -d '{"addressLineOne":"string","addressLineTwo":"string","city":"string","countries":["string"],"country":"string","email":"string","firstName":"string","lastName":"string","name":"string","phone":"string","state":"string","taxId":"string","zip":"string"}'
Request example
{
  "addressLineOne": "string",
  "addressLineTwo": "string",
  "city": "string",
  "countries": [
    "string"
  ],
  "country": "string",
  "email": "string",
  "firstName": "string",
  "lastName": "string",
  "name": "string",
  "phone": "string",
  "state": "string",
  "taxId": "string",
  "zip": "string"
}
Response examples (200)
{
  "addressLineOne": "string",
  "addressLineTwo": "string",
  "city": "string",
  "countries": [
    "string"
  ],
  "country": "string",
  "createdAt": "2023-05-04T09:42:00+00:00",
  "email": "string",
  "firstName": "string",
  "id": 42,
  "lastName": "string",
  "name": "string",
  "phone": "string",
  "state": "string",
  "taxId": "string",
  "updatedAt": "2023-05-04T09:42:00+00:00",
  "zip": "string"
}