POST /landed-cost-dropship-providers.json

POST /landed-cost-dropship-providers.json
application/json

Body Required

  • dropshipProviderId integer(int32) Required

    Dropship provider

  • landedCostId integer(int32) Required

    Landed cost

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • createdAt string(date-time)

      Created at

    • dropshipProviderId integer(int32) Required

      Dropship provider

    • id integer(int32)

      Id

    • landedCostId integer(int32) Required

      Landed cost

    • updatedAt string(date-time)

      Updated at

POST /landed-cost-dropship-providers.json
curl \
 --request POST 'http://api.example.com/v1/landed-cost-dropship-providers.json' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"dropshipProviderId":42,"landedCostId":42}'
Request examples
{
  "dropshipProviderId": 42,
  "landedCostId": 42
}
Response examples (200)
{
  "createdAt": "2025-05-04T09:42:00Z",
  "dropshipProviderId": 42,
  "id": 42,
  "landedCostId": 42,
  "updatedAt": "2025-05-04T09:42:00Z"
}