This feature helps to determine the clients from the system who are partners. The Service URL of the module is given by the following link-
https://{domain}.qevalpro.com/api/ManageUser/GetPartnerListByClientId
The domain can be: “app” or “ai”.
- Method– Post
- Json Formats–
1. Code snippet for Web Service Use–
{
Headers
Every API call must include two-factor authentication by providing the following headers:
- Authorization: Bearer <Generated_Token>
- The Bearer Token is generated upon a successful login.
- X_API_KEY: <Your_Unique_API_Key>
- Note: This key is assigned by the QEval team. If not available, you can request it via email at Qeval@etechtexas.com
}
2. Description for Request Parameters-
S.No |
Name |
Type |
Description |
1 |
Token |
String |
Authentication token |
3. Response Example-
Success–
[
{
“PartnerId”: 6584,
“PartnerName”: “Strell”,
“ParentId”: 12,
“CreatedDate”: “2017-01-31T00:00:00”,
“IsActive”: true,
“ErrorCode”: 0,
“ResultCode”: 0
},
{
“PartnerId”: 8965,
“PartnerName”: “AGR”,
“ParentId”: 12,
“CreatedDate”: “2015-12-11T12:03:25.163”,
“IsActive”: true,
“ErrorCode”: 0,
“ResultCode”: 0
}
]
Fail–
{“Message”: “The request is invalid”}
Video