Payments API (v2)

Download OpenAPI description
Languages
Servers
Staging URL
https://apis.spotnana.com/
Spotnana mock server
https://developer.spotnana.com/_mock/openapi/paymentsapi/

Payments

APIs related to Cards, Payments and Fees.

Service Charge

Operations

List service charges

Request

List service charges for a given entity

Path
entityTypestring(ServiceChargeEntityType)required

Entity type for service charge

Enum"TRIP""USER"
Example: TRIP
entityIdstringrequired

Entity ID for service charge e.g. trip ID for entityType = TRIP

Example: 1234567890
typestring(ServiceChargeType)required

Service charge type.

Value"TMC_CHARGE"
Example: TMC_CHARGE
Bodyapplication/jsonrequired
serviceTypestring(ServiceType)

Type of service charge (Optional).

Enum"ITINERARY_BOOKING""AGENT_CONTACT"
curl -i -X POST \
  https://apis.spotnana.com/v2/service-charge/TRIP/1234567890/types/TMC_CHARGE/list \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "serviceType": "ITINERARY_BOOKING"
  }'

Responses

OK

Bodyapplication/json
serviceChargesArray of objects(ServiceChargeRecord)

List of service charges.

Response
application/json
{ "serviceCharges": [ {} ] }

Personal Payment Sources

Operations