api_app_payment_methods_destroy
DELETE
/api/app/{app_slug}/payment-methods/{id}/
const url = 'https://example.com/api/app/example/payment-methods/example/';const options = {method: 'DELETE', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/app/example/payment-methods/example/ \ --header 'Authorization: <Authorization>'支付方式管理ViewSet - 应用特定的支付方式管理
app_slug
必填
string
id
必填
string
无响应正文