API Documentation

Get Eval Forms

This module has been designed to get evaluation forms based on CampaignId from the system. The Service URL of the module is given by the following link:
 
https://{domain}.qevalpro.com/api/ManageUser/GetEvalFormListByCampaignId

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:

  1. Authorization: Bearer <Generated_Token>
    • The Bearer Token is generated upon a successful login.
  2. 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

CampaignId

Int

Specific ID of the campaign.

2

Token

String

Authentication token.

3. Response Example-

[
    { 
        “Selected”: true,
        “Text”: “Select Eval Form Name”,
        “Value”: “0”
    },
    {
        “Selected”: false,
        “Text”: “Test Form 1”,
        “Value”: “11111”
    },
    {
        “Selected”: false,
        “Text”: “Test Form 2”,
        “Value”: “22222”
    }
]

    ×

    Contact Us