PUT api/store/{id}/account/{accountID}
Save store account StoreIDStoreAccount IDStore Account
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| accountID | integer |
Required |
Body Parameters
StoreAccount| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| StoreID | integer |
None. |
|
| AccountName | string |
None. |
|
| BSB | string |
None. |
|
| AccountNumber | string |
None. |
|
| AccountDesignated |
Is this the account designated for customer account payments? |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"storeID": 1,
"accountName": "sample string 2",
"bsb": "sample string 3",
"accountNumber": "sample string 4",
"accountDesignated": true
}
application/xml, text/xml
Sample:
<StoreAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EziManager.Models.EMC.Stores"> <AccountDesignated>true</AccountDesignated> <AccountName>sample string 2</AccountName> <AccountNumber>sample string 4</AccountNumber> <BSB>sample string 3</BSB> <ID>1</ID> <StoreID>1</StoreID> </StoreAccount>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.