Delete a Project

You can delete a project by sending a DELETE request to the /project endpoint.

Delete a project.

DELETE https://api.playfix.io/project/<project_name>

Path Parameters

Name
Type
Description

project_name*

String

The project name. This will start with "projects/" followed by a ULID.

Example: projects/01g55rpe1a2kxnm1t3f90dy9ke

Headers

Name
Type
Description

Authorization*

String

The access token gotten from the authorization process.

Example:

Bearer <your_access_token>

{

}

Example cURL API Call

curl --request DELETE \
  --url https://api.playfix.io/project/<project_name> \
  --header 'Authorization: Bearer <your_access_token>'

Example Python Call

import requests

r = requests.delete(
    "https://api.playfix.io/project/<project_name>",
    headers = {
        "Authorization": "Bearer <your_access_token>"
        }
    )

print(r.text)

Response Body

{

}

The response is an empty object, indicating that the project has been deleted successfully.

Last updated