Create payment service session by id
transactions.write scope.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The ID of the payment service.
"46973e9d-88a7-44a6-abfe-be4ff0134ff4"
Body
A request to generate a session for a payment session.
Response
Returns the response from the downstream service used to generate the session.
A session request for a payment session. This is an opaque object passed to the payment service.
The type of this resource.
payment-service-session "payment-service-session"
The status of the response.
succeeded- The session was successfully generated.failed- The session could not be generated.
succeeded, failed "succeeded"
A generic error code that may be returned when the session could not be generated.
"UNKNOWN_ERROR"
The HTTP status code received from the payment service.
200
The parsed JSON received from the payment service.
{
"data": {
"customerType": "EXISTING",
"walletManagementUrl": "https://example.com/session"
},
"meta": {}
}