Skip to main content
DELETE /v1/issuer/data_source_mappings/{id} API Key

Delete a mapping

Delete a data source mapping. This operation will fail if the mapping has
active credential automations. Remove all automations first.

Parameters

Name Location Type Description
id * path string Data source mapping ID
X-API-Key * header string Issuer API key for authentication

* Required parameter

Response

200 Mapping deleted

Content-Type: application/json

success boolean
data object
message string

Code Examples

import os
from aho_sdk import AhoSdk

client = AhoSdk.issuer(api_key=os.environ["AHO_API_KEY"])

result = client.data_source_mappings.delete(
    id="example_id"
)

Try It

Log in to test this endpoint directly from the documentation.

Log in