Delete Payment Setting
Description:
The /payment-setting/{id}
endpoint allows deletion of a specific payment setting.
Method:
DELETE
Path Parameter:
Parameter | Type | Description |
---|---|---|
id | string | The unique identifier of the payment setting |
curl --request DELETE \
--url https://server26-dot-royalti-project.uc.r.appspot.com/payment-setting/{id} \
--header 'Authorization: Bearer <token>'
{
"message": "Payment setting deleted successfully."
}
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Payment Setting ID
Success
The response is of type object
.
curl --request DELETE \
--url https://server26-dot-royalti-project.uc.r.appspot.com/payment-setting/{id} \
--header 'Authorization: Bearer <token>'
{
"message": "Payment setting deleted successfully."
}