Skip to main content
DELETE
/
parsers
/
{id}
{?context}
Delete an entity by unique ID
import requests

url = "https://{FUSION HOST}/api/parsers/{id}{?context}"

headers = {"Authorization": "Basic <encoded-value>"}

response = requests.delete(url, headers=headers)

print(response.json())
{}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The entity ID

Query Parameters

context
string

Validates which app the entity should be part of by specifying, for example, "app:SomeApp". If the entity is not part of the app this request will fail. Any other comma-separated contexts in the context parameter are allowed but ignored.

Response

OK

The response is of type object.