Add Inbound Site

This operation used for generating Inbound Site Id.

SecuritybearerAuth
Request
Request Body schema: application/json
One of:
name
required
string

The name of the inbound site to be added.

type
required
string

The type of the inbound site

locationId
required
string

The location ID associated with the inbound site.

defaultSite
boolean

Indicates if this is the default site.

Responses
200

Requested Inbound Site Id has been generated successfully.

400

Invalid request.

401

The request could not be authorized.

500

The request could not be completed due to an internal error.

post/api/v1/inboundsites
Request samples
application/json
{
  • "name": "Site A",
  • "type": "site",
  • "locationId": "M0K9QbNMgob",
  • "defaultSite": true
}
Response samples
application/json
{
  • "inboundSiteId": "zADZNQ1VWvvA"
}