GET v1/Shops/{shopId}/EMailboxes

Get all EMailboxes which are available.

Request Information

Requires Authorization!

URI Parameters

NameDescriptionTypeAdditional information
shopId

The shop identifier.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

A list of the EMailbox objects.


Collection of EMailbox
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

Name

Gets or sets the name.

string

Required

Max length: 50

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfEMailbox xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EMailbox>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EMailbox>
  <EMailbox>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EMailbox>
</ArrayOfEMailbox>