APIs related to Cards, Payments and Fees.
curl -i -X GET \
'https://apis.spotnana.com/v2/payment/users/4974a66b-7493-4f41-908c-58ba81093947/payment-sources?limit=10&offset=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "paymentSourceInfos": [ { … } ], "paginationParams": { "totalNumResults": 0 } }
Detailed information about the payment source to be created.
Details of the payment source
Card Details
The issuing company of card
Billing address
Address lines
Code of administrative area. For example: DL for Delhi, India. Highest administrative subdivision which is used for postal addresses of a country or region. For example, this can be a state, a province, an oblast, or a prefecture. Specifically, for Spain this is the province and not the autonomous community (e.g. "Barcelona" and not "Catalonia"). Many countries don't use an administrative area in postal addresses. E.g. in Switzerland this should be left unpopulated.
Name of administrative area. This is full name corresponding to administrativeArea. Like Delhi for DL area code. For some places, code and name maybe same as well like Tokyo.
Address description
Whether this address is default address in case multiple addresses are specified.
BCP-47 language code of the contents of this address (if known). This is often the UI language of the input form or is expected to match one of the languages used in the address' country/region, or their transliterated equivalents. This can affect formatting in certain countries, but is not critical to the correctness of the data and will never affect any validation or other non-formatting related operations. Examples: "zh-Hant", "ja", "ja-Latn", "en".
Generally refers to the city/town portion of the address.
IATA 3-letter location code. See https://www.iata.org/en/services/codes.
The name of the organization at the address.
Postal code of the address. This is a required field when setting for a user/legal entity/company etc.
2 letter continent code of the continent this address falls in.
The recipient at the address.
Region code of the country/region of the address.
Region name of the country/region of the address.
Additional, country-specific, sorting code. This is not used in most regions. Where it is used, the value is either a string like "CEDEX", optionally followed by a number (e.g. "CEDEX 7"), or just a number alone, representing the "sector code" (Jamaica), "delivery area indicator" (Malawi) or "post office indicator" (e.g. Côte d'Ivoire).
Sublocality of the address. This can be neighborhoods, boroughs, districts.
Time zone of the address.
Card Expiry.
Applicable Filters i.e. access level, travel type information etc.
Applicable payment source travel types
curl -i -X POST \
https://apis.spotnana.com/v2/payment/users/4974a66b-7493-4f41-908c-58ba81093947/payment-sources \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"paymentSourceInfo": {
"paymentSource": {
"type": "CARD",
"card": {
"company": "VISA",
"name": "Harrison Schwartz",
"address": {
"addressLines": [
"Golden Gate Bridge"
],
"administrativeArea": "CA",
"administrativeAreaName": "California",
"description": "San Francisco Home",
"isDefault": true,
"languageCode": "en",
"locality": "San Francisco",
"locationCode": "LAX",
"organization": "Spotnana",
"postalCode": "94130",
"continentCode": "AF",
"recipients": [
"string"
],
"regionCode": "US",
"regionName": "America",
"revision": 1,
"sortingCode": "Jamaica",
"sublocality": "string",
"timezone": "America/Los_Angeles",
"coordinates": {
"latitude": 77.1025,
"longitude": 28.7041
}
},
"number": "4111111111111111",
"cvv": "012",
"label": "Label amex",
"expiry": {
"expiryMonth": 1,
"expiryYear": 2010
},
"ownershipLabel": "CORPORATE"
}
},
"filter": {
"type": "PERSONAL",
"travelTypes": [
"AIR"
],
"managedTravelerAccess": {
"enabled": false,
"visibility": {
"showToTravelers": false
}
}
},
"externalId": "bxt_RNGsNfzgJDaTstKIKqK4xEuhGYAnMdYK8T40"
}
}'
{ "id": "f49d00fe-1eda-4304-ba79-a980f565281d", "status": "ACTIVE", "authenticationInfo": { "authUrl": "string" } }
curl -i -X GET \
https://apis.spotnana.com/v2/payment/users/4974a66b-7493-4f41-908c-58ba81093947/payment-sources/4974a66b-7493-4f41-908c-58ba81093947 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
{ "paymentSource": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "paymentSource": { … }, "filter": { … }, "status": "ACTIVE", "externalId": "bxt_RNGsNfzgJDaTstKIKqK4xEuhGYAnMdYK8T40" } }
curl -i -X DELETE \
https://apis.spotnana.com/v2/payment/users/4974a66b-7493-4f41-908c-58ba81093947/payment-sources/4974a66b-7493-4f41-908c-58ba81093947 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Details of the payment source to be updated
Card Details to be updated
curl -i -X PATCH \
https://apis.spotnana.com/v2/payment/users/4974a66b-7493-4f41-908c-58ba81093947/payment-sources/4974a66b-7493-4f41-908c-58ba81093947 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"paymentSourceInfo": {
"paymentType": "CARD",
"card": {
"address": {
"addressLines": [
"Golden Gate Bridge"
],
"administrativeArea": "CA",
"administrativeAreaName": "California",
"description": "San Francisco Home",
"isDefault": true,
"languageCode": "en",
"locality": "San Francisco",
"locationCode": "LAX",
"organization": "Spotnana",
"postalCode": "94130",
"continentCode": "AF",
"recipients": [
"string"
],
"regionCode": "US",
"regionName": "America",
"revision": 1,
"sortingCode": "Jamaica",
"sublocality": "string",
"timezone": "America/Los_Angeles",
"coordinates": {
"latitude": 77.1025,
"longitude": 28.7041
}
},
"label": "Label amex",
"ownershipLabel": "CORPORATE"
}
},
"filter": {
"type": "PERSONAL",
"travelTypes": [
"AIR"
],
"managedTravelerAccess": {
"enabled": false,
"visibility": {
"showToTravelers": false
}
}
}
}'