Account Verification
Interface description
Request Domain: image.edgeone.app.
Validate whether the user's API Key is legitimate.
Note:
1. All interfaces require ApiKey + UserId for API authentication. The API Key is your private key. Please avoid leaking the API Key when invoking the API.
2. The RequestId in the response can be used for tracing and troubleshooting issues.
URL Path
/api/v1/Authentication
Request method
POST
Request headers
Content-Type: application/json
Input Parameter
Parameter Name | Type | Required | Description |
ApiKey | string | Yes | User API Key |
UserId | string | Yes | User ID |
Response data type
JSON
Sample response
{"code": 0,"data": {"Response": {"Result": true,"UserId": "********"}},"message": "ok","requestId": "824f1198-xxxx-xxxx-xxxx-xxxx"}
Field description
code
(int): Response status code, 0 indicates success.data
(object): Object containing the actual response data.Response
(object): Actual business response data.Result
(boolean): Verification result, true indicates verification passed, false indicates verification failed.UserId
(string): User ID.message
(string): Response message.requestId
(string): Request ID.