| Parameter | Type | Required | Description |
|---|---|---|---|
| documentType | String | Yes | Type of verification. For this API use "ICWAI Membership verification". |
| membershipNo | String | Yes | Membership number issued by the Institute of Cost Accountants of India. |
| consent | String | Yes | User consent flag for verification. Acceptable value is "Y". |
| Parameter | Type | Description |
|---|---|---|
| status_code | Integer | Status code indicating verification result. |
| request_id | String | Unique identifier generated for the API request. |
| Fname | String | First name of the member. |
| Mname | String | Middle name of the member. |
| SrName | String | Surname of the member. |
| dob | String | Date of birth of the member. |
| gender | String | Gender of the member. |
| MemCategory | String | Membership category of the professional. |
| MemshipDt | String | Date when the membership was granted. |
| MemRegion | String | Region where the member is registered. |
| Chapter | String | Regional chapter associated with the member. |
| Retired | String | Indicates whether the member is retired. |
| ProtFirmName | String | Name of the professional firm associated with the member. |
| FirmEftDt | String | Effective date of firm association. |
| CrtEmployer | String | Current employer of the member. |
| EffectiveDt | String | Membership effective date. |
| ValidUpDt | String | Validity date of the membership. |
| CancellationDt | String | Date of membership cancellation, if applicable. |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v4_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n documentType: \"ICWAI Membership verification\"\r\n membershipNo:\"45678\"\r\n consent: \"Y\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on ICWAIMProfessionalVerificationResult {\r\n status_code\r\n request_id\r\n data {\r\n Fname\r\n Mname\r\n SrName\r\n dob\r\n gender\r\n MemCategory\r\n MemshipDt\r\n MemRegion\r\n Chapter\r\n Retired\r\n ProtFirmName\r\n FirmEftDt\r\n CrtEmployer\r\n EffectiveDt\r\n ValidUpDt\r\n CancellationDt\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "ICWAIMProfessionalVerificationResult",
"status_code": 101,
"request_id": "0fe34f7f-f831-4217-96fc-f3cb05481566",
"data": {
"Fname": "Vijaya Venkata Priyanka Gadamsetty",
"Mname": "",
"SrName": "",
"dob": "",
"gender": "",
"MemCategory": "",
"MemshipDt": "",
"MemRegion": "",
"Chapter": "",
"Retired": "",
"ProtFirmName": "",
"FirmEftDt": "",
"CrtEmployer": "",
"EffectiveDt": "",
"ValidUpDt": "",
"CancellationDt": ""
}
}
}
}
}