POST api/authenticate
Request Information
URI Parameters
None.
Body Parameters
ClientKeyName | Description | Type | Additional information |
---|---|---|---|
ClientKeyID | integer |
None. |
|
CompanyID | integer |
None. |
|
ClientID | string |
None. |
|
ClientSecret | string |
None. |
|
CreateOn | date |
None. |
|
UserID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{ "ClientKeyID": 1, "CompanyID": 2, "ClientID": "sample string 3", "ClientSecret": "sample string 4", "CreateOn": "2025-07-23T02:06:35.9743579+07:00", "UserID": 6 }
application/xml, text/xml
Sample:
<ClientKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/newpostModel"> <ClientID>sample string 3</ClientID> <ClientKeyID>1</ClientKeyID> <ClientSecret>sample string 4</ClientSecret> <CompanyID>2</CompanyID> <CreateOn>2025-07-23T02:06:35.9743579+07:00</CreateOn> <UserID>6</UserID> </ClientKey>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Dictionary of string [key] and Object [value]Response Formats
application/json, text/json
Sample:
{ "sample string 1": {}, "sample string 3": {} }
application/xml, text/xml
Sample:
<ArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <KeyValueOfstringanyType> <Key>sample string 1</Key> <Value /> </KeyValueOfstringanyType> <KeyValueOfstringanyType> <Key>sample string 3</Key> <Value /> </KeyValueOfstringanyType> </ArrayOfKeyValueOfstringanyType>