POST /accounting-integrations.json
Body Required
-
dropshipEndpoint string | null
Dropship endpoint
-
Name
-
replenishmentEndpoint string | null
Replenishment endpoint
-
saleEndpoint string | null
Sale endpoint
POST /accounting-integrations.json
curl \
-X POST http://api.example.com/v1/accounting-integrations.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"dropshipEndpoint":"string","name":"string","replenishmentEndpoint":"string","saleEndpoint":"string"}'
Request example
{
"dropshipEndpoint": "string",
"name": "string",
"replenishmentEndpoint": "string",
"saleEndpoint": "string"
}
Response examples (200)
{
"createdAt": "2024-05-04T09:42:00+00:00",
"dropshipEndpoint": "string",
"id": 42,
"name": "string",
"replenishmentEndpoint": "string",
"saleEndpoint": "string",
"updatedAt": "2024-05-04T09:42:00+00:00"
}