curl --request POST \
--url https://api.projectdiscovery.io/v1/leaks/status \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"leakid": "<string>",
"leakids": [
"<string>"
],
"status": "fixed"
}'
{
"status": "<string>",
"message": "<string>",
"leak_id": "<string>",
"new_status": "fixed"
}
curl --request POST \
--url https://api.projectdiscovery.io/v1/leaks/status \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"leakid": "<string>",
"leakids": [
"<string>"
],
"status": "fixed"
}'
{
"status": "<string>",
"message": "<string>",
"leak_id": "<string>",
"new_status": "fixed"
}
OK
The response is of type object
.
Was this page helpful?