Delete Short URL
Delete Short URL
Postman Collection
URL
POST: /v1/shortener/deleteHEADERS
Params | Value |
---|---|
Authorization | Basic Auth |
Content-Type | application/json |
Accept | application/json |
Parameters
Param | Data Type | Required |
---|---|---|
url | String | Required when requestId not present |
requestId | String | Required when url not present |
Request
Body Sample
{
"requestId": "REQ473708703373400",
"url": "https://f1m.in/4RaUgTh"
}
cURL Sample
curl --location --request POST '/v1/shortener/delete' \
--header 'Authorization: Basic ZjMDVhZWY1NTc5ODgxMjg0NzEwZTZkMzM5ODMyYmU2YTJkNjg5' \
--header 'Content-Type: application/json' \
--data-raw '{
"requestId": "REQ473708703373400",
"url": "https://f1m.in/4RaUgTh"
}'
Response
success
{
"code": "200",
"status": "success",
"message": "URL deleted."
}
failed
{
"code": "404",
"status": "failed",
"error": "URL not deleted."
}