api_app_create_payment_intent_create
POST
/api/app/{app_slug}/create-payment-intent/
const url = 'https://example.com/api/app/example/create-payment-intent/';const options = {method: 'POST', 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 POST \ --url https://example.com/api/app/example/create-payment-intent/ \ --header 'Authorization: <Authorization>'为特定应用创建支付意向
app_slug
必填
string
无响应正文