Get withdrawal method catalog entry by type
Returns a single catalog entry by its machine-readable type key (e.g. "sepa_bank_transfer"). Use this when validating a saved method or when showing details of a specific method type.
Authorization
bearer In: header
Path Parameters
Response Body
application/json
curl -X GET "https://api.miracle.com/v1/withdrawal-method-catalog/string"{
"data": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"type": "string",
"label": "string",
"description": "string",
"fieldSchema": {
"property1": null,
"property2": null
},
"status": "active",
"createdAt": "string",
"updatedAt": "string",
"deletedAt": null
}
}Update webhook endpoint
Updates mutable fields of a webhook endpoint (url, events, description, status). Only fields included in the body are changed. Events, if provided, REPLACE the previous subscription set — no partial merge. Use `status: "disabled"` to pause deliveries without deleting the endpoint.
List withdrawal method catalog entries
Returns the platform-wide catalog of supported withdrawal method types. Each entry defines the machine-readable `type` key, a human-readable label, and a JSON schema describing the required `details` fields. Use this catalog to render the "add withdrawal method" form in merchant portals.