GET v1/ShopOwners/{shopOwnerId}/CarrierAccounts
Get a list with all CarrierAccounts.
Request Information
Requires Authorization!
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopOwnerId | integer |
Required. |
Body Parameters
None.
Response Information
Resource Description
Collection of CarrierAccount
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Gets or sets the identifier. |
integer |
Required |
| AppModuleDefinitionId |
Gets or sets the AppModuleDefinition identifier. |
integer |
Required |
| Name |
Gets or sets the name. |
string |
Required Max length: 100 |
| Enabled |
Indicates whether the CarrierAccount is enabled. |
boolean |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"AppModuleDefinitionId": 2,
"Name": "sample string 3",
"Enabled": true
},
{
"Id": 1,
"AppModuleDefinitionId": 2,
"Name": "sample string 3",
"Enabled": true
}
]
application/xml, text/xml
Sample:
<ArrayOfCarrierAccount xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CarrierAccount>
<Id>1</Id>
<AppModuleDefinitionId>2</AppModuleDefinitionId>
<Name>sample string 3</Name>
<Enabled>true</Enabled>
</CarrierAccount>
<CarrierAccount>
<Id>1</Id>
<AppModuleDefinitionId>2</AppModuleDefinitionId>
<Name>sample string 3</Name>
<Enabled>true</Enabled>
</CarrierAccount>
</ArrayOfCarrierAccount>