Start reservation payment workflow
POST
/reservation-payment-workflow-starts
const url = 'https://example.com/reservation-payment-workflow-starts';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"paymentWorkflowRequestId":"example","paymentId":"example","amountKrw":1,"action":"verify_paid_payment"}'};
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/reservation-payment-workflow-starts \ --header 'Content-Type: application/json' \ --data '{ "paymentWorkflowRequestId": "example", "paymentId": "example", "amountKrw": 1, "action": "verify_paid_payment" }'Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
ReservationPaymentWorkflowStart
object
paymentWorkflowRequestId
required
string
paymentId
required
string
amountKrw
required
integer
action
required
string
key
additional properties
Responses
Section titled “Responses”Reservation payment workflow accepted
Media typeapplication/json
ReservationPaymentWorkflowStartResponse
object
paymentWorkflowRequestId
required
string
paymentId
required
string
amountKrw
required
integer
action
required
string
workflowName
required
string
workflowKey
required
string
workflowEngine
required
string
invocationId
required
string
workflowStatus
required
string
key
additional properties
Workflow payload is not valid for payment orchestration
Reservation payment workflow runtime is unavailable