PUT api/account/{id}/update
Update account details Processes this account API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique identifier of the requested resource. |
integer |
Required |
Body Parameters
The update account details data contract supplied with the request.
UpdateAccountDetailsDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| IBAN |
The iban value. |
string |
None. |
| BIC |
The bic value. |
string |
None. |
| Name |
The name value. |
string |
None. |
Request Formats
application/x-www-form-urlencoded
Sample:
Sample not available.
application/json, text/json
Sample:
{
"IBAN": "sample string 1",
"BIC": "sample string 2",
"Name": "sample string 3"
}
Response Information
Resource Description
The response returned after the operation completes.
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.