POST /amazon-accounts.json

POST /amazon-accounts.json
application/json

Body Required

  • authToken string Required

    Auth token

  • channelId integer(int32) Required

    Channel

  • marketplaceId string Required

    Marketplace

  • name string Required

    Name

  • sellerId string Required

    Seller

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • authToken string Required

      Auth token

    • channelId integer(int32) Required

      Channel

    • createdAt string(date-time)

      Created at

    • id integer(int32)

      Id

    • marketplaceId string Required

      Marketplace

    • name string Required

      Name

    • sellerId string Required

      Seller

    • updatedAt string(date-time)

      Updated at

POST /amazon-accounts.json
curl \
 --request POST 'http://api.example.com/v1/amazon-accounts.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"authToken":"string","channelId":42,"marketplaceId":"string","name":"string","sellerId":"string"}'
Request examples
{
  "authToken": "string",
  "channelId": 42,
  "marketplaceId": "string",
  "name": "string",
  "sellerId": "string"
}
Response examples (200)
{
  "authToken": "string",
  "channelId": 42,
  "createdAt": "2025-05-04T09:42:00Z",
  "id": 42,
  "marketplaceId": "string",
  "name": "string",
  "sellerId": "string",
  "updatedAt": "2025-05-04T09:42:00Z"
}