GET api/integration/auth?appKey={appKey}
Validate the integratin app key.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
appKey | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Validate the integratin app key.
API_Data_P1ApiUrlsName | Description | Type | Additional information |
---|---|---|---|
Success | boolean |
None. |
|
Error | ErrorInfo |
None. |
|
Data | P1ApiUrls |
None. |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Error": { "ErrorCode": 1, "ErrorMessage": "sample string 1" }, "Data": { "BaseUrl": "sample string 1", "DevTrackApi": "sample string 2", "DevSpecApi": "sample string 3" } }
application/xml, text/xml
Sample:
<API_Data_P1ApiUrls xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.Common"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/TechExcel.DTKService.Model.SystemManage"> <d2p1:BaseUrl>sample string 1</d2p1:BaseUrl> <d2p1:DevSpecApi>sample string 3</d2p1:DevSpecApi> <d2p1:DevTrackApi>sample string 2</d2p1:DevTrackApi> </Data> <Error> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 1</ErrorMessage> </Error> <Success>true</Success> </API_Data_P1ApiUrls>