PUT api/Clients

Request Information

URI Parameters

None.

Body Parameters

Client
NameDescriptionTypeAdditional information
ClientId

integer

None.

UniqueIdentifier

string

None.

Description

string

None.

LastSyncIP

string

None.

LastSyncDateTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientId": 1,
  "UniqueIdentifier": "sample string 2",
  "Description": "sample string 3",
  "LastSyncIP": "sample string 4",
  "LastSyncDateTime": "2026-04-14T07:59:03.6342984+00:00"
}

application/xml, text/xml

Sample:
<Client xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MScore.Synchronization.WebApi.Dto">
  <ClientId>1</ClientId>
  <Description>sample string 3</Description>
  <LastSyncDateTime>2026-04-14T07:59:03.6342984+00:00</LastSyncDateTime>
  <LastSyncIP>sample string 4</LastSyncIP>
  <UniqueIdentifier>sample string 2</UniqueIdentifier>
</Client>

application/x-www-form-urlencoded

Sample:

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

Response Information

Resource Description

None.