Delete company list
Edit a company list
Authorizations
AuthorizationstringRequired
Token-based authentication with required prefix "Token"
Path parameters
short_idstringRequired
Body
idstringRead-onlyOptional
short_idstringRead-onlyOptional
namestring · max: 255Optional
sourcestring | nullableOptional
num_optionsstringRead-onlyOptional
Responses
200Success
application/json
401
Unauthorized
404
Not found
patch
v1/company/lists/{short_id}/Request samples
import requests
response = requests.delete(
"https://journeys-api.50skills.app/v1/company/lists/{short_id}/",
)
print(response.json()) fetch("https://journeys-api.50skills.app/v1/company/lists/{short_id}/", {
method: "DELETE"
})
.then(response => {
if (response.ok) {
console.log("Journey deleted successfully");
} else {
console.error("Failed to delete journey");
}
})
.catch(error => console.error(error)); Last updated