POST api/ClientList/IsClientNameExists
Request Information
URI Parameters
None.
Body Parameters
ClientListDtoName | Description | Type | Additional information |
---|---|---|---|
Index | integer |
None. |
|
ClientName | string |
None. |
|
CustomerId | string |
None. |
|
Inactive | boolean |
None. |
|
UniqueId | globally unique identifier |
None. |
|
ClientNameCustId | string |
None. |
|
StatusId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "index": 1, "clientName": "sample string 2", "customerId": "sample string 3", "inactive": true, "uniqueId": "48c68bed-f05f-4c9d-8c0b-603196637c3c", "clientNameCustId": "sample string 5", "statusId": 1 }
application/xml, text/xml
Sample:
<ClientListDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StairBiz.Contracts.Dto"> <ClientName>sample string 2</ClientName> <ClientNameCustId>sample string 5</ClientNameCustId> <CustomerId>sample string 3</CustomerId> <Inactive>true</Inactive> <Index>1</Index> <StatusId>1</StatusId> <UniqueId>48c68bed-f05f-4c9d-8c0b-603196637c3c</UniqueId> </ClientListDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>