Delete Link by Id
DELETE/links/:id
Use this endpoint to delete a link by Id.
Request
Path Parameters
id stringrequired
Responses
- 200
- 404
Delete Link by Id 200
Response Headers
Connection
string
Content-Length
string
Date
string
Keep-Alive
string
Return-Format
string
- application/json
- Schema
- Example (from schema)
- Delete Link by Id 200
Schema
data
object
object
messages string[]
{
"data": {},
"messages": [
"Link deleted"
]
}
{
"data": {},
"messages": [
"Link deleted"
]
}
Delete Link by Id - 404
Response Headers
Connection
string
Content-Length
string
Date
string
Keep-Alive
string
Return-Format
string
- application/json
- Schema
- Example (from schema)
- Delete Link by Id - 404
Schema
error
object
code number
messages string[]
moreInfo string
status number
type string
{
"error": {
"code": 18003,
"messages": [
"Link with id [485377] not found"
],
"moreInfo": "https://www.propel.us/docs/errors/18003",
"status": 404,
"type": "LinkNotFound"
}
}
{
"error": {
"code": 18003,
"messages": [
"Link with id [485377] not found"
],
"moreInfo": "https://www.propel.us/docs/errors/18003",
"status": 404,
"type": "LinkNotFound"
}
}
Loading...