Initiate Copy Verification API
Learn how to initiate the Copy Verification process for a CL2C user using the `/v1/cl2c/copyverify` endpoint.
⚠️ This content is not available in your language yet.
The POST /v1/cl2c/copyverify
endpoint allows you to initiate the Copy Verification process for a specific CL2C user by providing their unique cL2CUserId
. This action requires authentication via tenant ID and API key.
Endpoint
POST
/v1/cl2c/copyverify
Initiates the Copy Verification process for a CL2C user.
Parameters
Name | Type | Location | Required | Description |
---|---|---|---|---|
tenant | string | Header | Yes | Tenant ID for accessing this API. |
X-API-Key | string | Header | Yes | API Key ID for accessing this API. |
Request Body
Content Type: application/json
Field | Type | Required | Description |
---|---|---|---|
cL2CUserId | string | Yes | The unique ID of the CL2C user for whom the Copy Verification is being initiated. |
Example Request Body
Responses
Success (200)
Content Type: application/json
The response returns the ID of the initiated Copy Verification process.
Example Response
Error Responses
The endpoint may return standard error responses for invalid requests or server issues.
Code Samples
Usage in Different Frameworks
Node.js Example