API Documentation - Delete Famille 2

Endpoint

GET /fam2/delete/

Parameters

The following query parameter is required in the request:

  • id: The unique identifier of the Famille 2 to be deleted.

Response

The response is a JSON object containing the following fields:

{
    "success": true or false,
    "message": "Description of the response"
}

Error Handling

If an error occurs, the response will contain the following fields:

{
    "success": false,
    "message": "Error description"
}

Example Request

GET /fam2/delete/?id=123

Example Response

{
    "success": true,
    "message": "Deleted successfully"
}