POST api/JobPosts/UpdateClientDetails
Request Information
URI Parameters
None.
Body Parameters
UpdateClientDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | string |
None. |
|
| CurrencyCode | string |
None. |
|
| CurrencySymbol | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "sample string 1",
"CurrencyCode": "sample string 2",
"CurrencySymbol": "sample string 3"
}
application/xml, text/xml
Sample:
<UpdateClientDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <CurrencyCode>sample string 2</CurrencyCode> <CurrencySymbol>sample string 3</CurrencySymbol> <UserId>sample string 1</UserId> </UpdateClientDetails>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OutputBaseClass| Name | Description | Type | Additional information |
|---|---|---|---|
| IsCallSuccessful | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsCallSuccessful": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<OutputBaseClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <IsCallSuccessful>true</IsCallSuccessful> <Message>sample string 2</Message> </OutputBaseClass>