Documentation Menu

/facepop/delete Endpoint

This endpoint deletes the specified facepop from the user's account.

Endpoint Details

Request

POST /facepop/delete

This endpoint requires a POST request with your API key and the facepop object.

Parameters

Required Parameters:

APIKey

Your unique API key to authenticate the request.

facepop

The facepop object to be deleted.

No other parameters are required for this endpoint.

Response

Status: 200 OK

This endpoint always returns a 200 OK status when successful.

Response Body:

{}

The response is an empty object, indicating the facepop was successfully deleted.

Example Request

Using cURL:

curl -X POST https://api.answerly.io/facepop/delete \
  -H "Content-Type: application/json" \
  -d '{
    "APIKey": "your-api-key-here",
    "facepop": {
      ... your object
    }
  }'