Face Enhancer API
The Face Enhancer feature allows clients to enhance faces in images using advanced AI technology. This feature is accessible through RESTful API endpoints, supporting operations such as initiating a face enhancing process, monitoring progress, and downloading the face enhanced images.
Endpoints Overview
1. Start Face Enhancing Process
Description: Initiates the face enhancing process for a given image.
Details:
URL:
POST /api/v1/Image/FaceEnhancing/AdCreative
Full Path:
https://api.adcreative.ai/api/v1/Image/FaceEnhancing/AdCreative
Authorization: Requires a Bearer Token and the following headers:
Authorization
Bearer token for authentication
Bearer <YOUR_BEARER_TOKEN>
x-api-key
API Key for the application
<YOUR_API_KEY>
x-api-secret
Secret Key for the application
<YOUR_API_SECRET>
Content-Type
Specifies the data format
multipart/form-data
Accept
Expected response format
application/json
Request Body (form-data):
applicationId
GUID
Yes
Unique identifier for the application initiating the request.
userId
GUID
Yes
Unique identifier for the user for whom the face enhancement is performed.
ariaRatio
Float
No
Ratio for face enhancement area adjustment (default: 0.5
).
maxFaceCount
Integer
No
Maximum number of faces to enhance (default: 10
).
uploadedImage
File
Yes
Image file to be enhanced (e.g., .jpg
or .png
).
Example Request: cURL Command:
Example Responses:
Successful Response: HTTP Status Code:
200 OK
Response Body:Validation Error Response: HTTP Status Code:
400 Bad Request
Response Body:Authorization Error Response: HTTP Status Code:
401 Unauthorized
Response Body:
Notes on Errors:
400 Bad Request: Missing required fields or invalid image format.
401 Unauthorized: Missing or invalid token, or incorrect API credentials. Ensure all required fields are provided and valid.
2. Check User Progress
Description:
Retrieves the progress of the face enhancement process for a specific user.
Details:
Method: GET
URL:
/api/v1/Image/FaceEnhancing/CheckUserProgress
Full Path:
https://api.adcreative.ai/api/v1/Image/FaceEnhancing/CheckUserProgress
Authorization:
Requires a Bearer Token with the following headers:
Authorization
Bearer <YOUR_TOKEN>
Required for authentication.
x-api-key
<YOUR_API_KEY>
API Key for accessing the endpoint.
x-api-secret
<YOUR_API_SECRET>
API Secret for accessing the endpoint.
Accept
application/json
Specifies the response format.
Query Parameters:
userId
Guid
Yes
The unique identifier for the user.
imageFaceEnhancerProcessId
Guid
No
(Optional) The ID of the specific face enhancement process.
Example Request:
cURL Command:
Example Responses:
Successful Response:
HTTP Status Code: 200 OK
Response Body:
Validation Error Response:
HTTP Status Code: 400 Bad Request
Response Body:
Not Found Error Response:
HTTP Status Code: 404 Not Found
Response Body:
Notes on Errors:
400 Bad Request: Occurs when required parameters (e.g.,
userId
) are missing or invalid.404 Not Found: No progress data is found for the provided
userId
orimageFaceEnhancerProcessId
.401 Unauthorized: Bearer token is missing or invalid.
3. Check Application Progress
Description
Checks the progress of all face-enhancing processes for a specific application.
Endpoint Details
Method: GET
URL:
/api/v1/Image/FaceEnhancing/CheckApplicationAllProgresses
Full Path:
https://api.adcreative.ai/api/v1/Image/FaceEnhancing/CheckApplicationAllProgresses
Authorization
Requires a Bearer Token.
Headers
Authorization
Bearer token for authentication
Bearer <YOUR_BEARER_TOKEN>
x-api-key
API key for client identification
<YOUR_API_KEY>
x-api-secret
API secret for secure access
<YOUR_API_SECRET>
Accept
Expected response format
application/json
Query Parameters
applicationId
Guid
Yes
ID of the application making the request
4f7d8a9c-b5e6-4d3e-b7a9-d5c3e1b7a4f6
Example Request
cURL Command:
Example Responses
Successful Response:
HTTP Status Code: 200 OK
Response Body:
Validation Error Response:
HTTP Status Code: 400 Bad Request
Response Body:
Not Found Error Response:
HTTP Status Code: 404 Not Found
Response Body:
Authorization Error Response:
HTTP Status Code: 401 Unauthorized
Response Body:
Error Notes
400 Bad Request: Occurs if applicationId is missing or invalid. Ensure the applicationId is a valid GUID.
404 Not Found: No progress data is found for the provided applicationId.
401 Unauthorized: Bearer token is missing or invalid. Ensure proper API key and secret are used in the headers.
4. Download Face Enhanced Image
Endpoint Details
Method: GET
URL: /api/v1/Image/FaceEnhancing/Download
Full Path: https://api.adcreative.ai/api/v1/Image/FaceEnhancing/Download
Authorization
The following headers must be included for authentication and identification:
Authorization
Bearer token for authentication
Bearer <YOUR_BEARER_TOKEN>
x-api-key
API key for client identification
<YOUR_API_KEY>
x-api-secret
API secret for secure access
<YOUR_API_SECRET>
Accept
Expected response format
application/json
Query Parameters
applicationId
Guid
Yes
ID of the application making the request
4f7d8a9c-b5e6-4d3e-b7a9-d5c3e1b7a4f6
taskId
Guid
Yes
Unique identifier for the specific task
165ce0c4-27a4-4317-a388-3c4064cf8b17
imageFaceEnhancerProcessId
Guid
Yes
ID of the face-enhancing process
2c3a9038-a7c8-4a8a-8821-a66dc433c3dd
lowResolution
bool
No
Indicates whether the image is in low resolution
true
Example Request
cURL Command:
Example Responses
Successful Response
HTTP Status Code: 200 OK
Response Type: FileStream
Details: The requested image file stream will be directly downloaded.
Authorization Error Response
HTTP Status Code: 401 Unauthorized
Response Body:
Validation Error Response
HTTP Status Code: 400 Bad Request
Response Body:
Not Found Error Response
HTTP Status Code: 404 Not Found
Response Body:
Error Notes
400 Bad Request:
Occurs when
taskId
or other parameters are invalid.Ensure all query parameters are properly formatted.
404 Not Found:
No image content is found for the provided identifiers.
Verify that
applicationId
,taskId
, andimageFaceEnhancerProcessId
are correct.
401 Unauthorized:
Bearer token is missing or invalid.
Ensure proper API key and secret are used in the headers.
Validation Notes
Required Fields: All required fields must be provided in the request.
Notification Channel: If notifications are enabled, ensure a valid notification channel is configured.
Additional Notes
Notification Requirement: Ensure that an active notification channel is configured for the application before calling these endpoints.
Validation: Validate all GUIDs and required parameters before making API calls.
Last updated