POST api/ActionService/UpdateFreshBookClientInfo

Documentation for 'UpdateFreshBookClientInfo'.

Request Information

Parameters

NameDescriptionAdditional information
request
Documentation for 'request'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "ArtistName": "sample string 1",
  "Name": "sample string 2",
  "City": "sample string 3",
  "ZipCode": "sample string 4",
  "Address": "sample string 5",
  "VatNumber": "sample string 6",
  "UserId": 7,
  "ConceptId": 8,
  "HasVat": true
}

application/xml, text/xml

Sample:
<FreshbookClientInfoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartyMusic.BusinessObject.Messages.Musician.Subscription">
  <Address>sample string 5</Address>
  <ArtistName>sample string 1</ArtistName>
  <City>sample string 3</City>
  <ConceptId>8</ConceptId>
  <HasVat>true</HasVat>
  <Name>sample string 2</Name>
  <UserId>7</UserId>
  <VatNumber>sample string 6</VatNumber>
  <ZipCode>sample string 4</ZipCode>
</FreshbookClientInfoRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedMediaTypeFormatterTracer' to write type 'FreshbookClientInfoRequest'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "Message": true
}

application/xml, text/xml

Sample:
<ResponseBaseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PartyMusic.BusinessObject.MessageBase">
  <Message>true</Message>
  <status>sample string 1</status>
</ResponseBaseOfboolean>