Soldo Cards API
The Cards API from Soldo — 3 operation(s) for cards.
The Cards API from Soldo — 3 operation(s) for cards.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/soldo-cards-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
title: Soldo Business API v2.0 Cards API
description: Soldo Business API v2.0 OpenAPI specification
version: 5.56.0
servers:
- url: https://api.soldo.com
description: Production server (using live data)
- url: https://api-demo.soldocloud.net
description: Sandbox server (using test data)
tags:
- name: Cards
paths:
/business/v2/cards:
get:
tags:
- Cards
summary: Search Cards
description: Endpoint to find `Cards` using filtering parameters.
operationId: card-search
parameters:
- name: type
in: query
description: The type of a resource the `Card` is attached to.
schema:
$ref: '#/components/schemas/CardAttachedResourceType'
example: wallet
- name: id
in: query
description: The ID of the `type` resource (it's not applicable for `company` resource; it's not required for `employees`).
schema:
type: string
description: The ID of the `type` resource (it's not applicable for `company` resource; it's not required for `employees`).
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
- name: customreferenceId
in: query
description: The custom reference ID of the `type` resource.
schema:
type: string
description: The custom reference ID of the `type` resource.
example: 123456-user-1
example: 123456-user-1
- name: status
in: query
description: One among the available `Card` statuses of a `Card`.
schema:
$ref: '#/components/schemas/CardStatus'
example: Normal
- name: groupId
in: query
description: The ID of the `Group` the `Card` is related to.
schema:
type: string
description: The ID of the `Group` the `Card` is related to.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
- name: name
in: query
description: The name of the `Card`.
schema:
type: string
description: The name of the `Card`.
example: CardName
example: CardName
- name: label
in: query
description: The label of the `Card`.
schema:
type: string
description: The label of the `Card`.
example: CardLabel
example: CardLabel
- name: p
in: query
description: It indicates the specific page to display (the counter starts from zero).
schema:
type: integer
format: int32
default: 0
description: It indicates the specific page to display (the counter starts from zero).
example: 3
example: 3
- name: s
in: query
description: It indicates the number of items per page.
schema:
type: integer
format: int32
default: 0
description: It indicates the number of items per page.
example: 25
maximum: 50
example: 25
- name: d
in: query
description: It indicates how the pages are ordered.
schema:
$ref: '#/components/schemas/Direction'
example: DESC
- name: props
in: query
description: It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the `props` parameter in the request.
schema:
type: array
description: It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the `props` parameter in the request.
example: creationTime
items:
type: string
description: It indicates the sorting direction applied to the above parameters. To apply a sorting on multiple parameters, set as many times the `props` parameter in the request.
example: creationTime
example: creationTime
responses:
'200':
description: The result is an array containing `Cards`.
content:
application/json:
schema:
$ref: '#/components/schemas/Cards'
'400':
description: Your request has missing arguments or is malformed.
security:
- standardAuth:
- card_read
post:
tags:
- Cards
summary: Add Card
description: Endpoint to add a new `Card`. The created `Card` has the same currency of the `Wallet` it belongs to.
operationId: card-add
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Advanced authentication](ref:advanced-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this endpoint.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Advanced authentication](ref:advanced-authentication): Signature of the `X-Soldo-Fingerprint`.'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AddCardOrder'
responses:
'200':
description: The returned resource is a single `Order`.
content:
application/json:
schema:
$ref: '#/components/schemas/Order'
'400':
description: Your request has missing arguments or is malformed.
'404':
description: One or more resource requested does not exist.
security:
- standardAuth:
- card_write
x-soldo:
fingerprint-order: request_timestamp, owner_type, owner_public_id, wallet_id, address_id, vehicle_id, preset_id, token
/business/v2/cards/{cardId}:
get:
tags:
- Cards
summary: Get Card
description: Endpoint to retrieve a specific `Card` by ID.
operationId: card-get
parameters:
- name: cardId
in: path
required: true
schema:
type: string
description: The `Card` ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
- name: showSensitiveData
in: query
schema:
type: boolean
description: It determines whether to show `Card` sensitive data.
responses:
'200':
description: The returned resource is a single `Card`.
content:
application/json:
schema:
$ref: '#/components/schemas/Card'
'404':
description: One or more resource requested does not exist.
security:
- standardAuth:
- card_read
put:
tags:
- Cards
summary: Update Card
description: Endpoint to add and remove assignees for company `Cards`.
operationId: card-update
parameters:
- name: cardId
in: path
required: true
schema:
type: string
description: The `Card` ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Advanced authentication](ref:advanced-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this endpoint.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Advanced authentication](ref:advanced-authentication): Signature of the `X-Soldo-Fingerprint`.'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateCard'
responses:
'200':
description: The returned resource is a single `Card`.
content:
application/json:
schema:
$ref: '#/components/schemas/Card'
'400':
description: Your request has missing arguments or is malformed.
'404':
description: One or more resource requested does not exist.
security:
- standardAuth:
- card_write
x-soldo:
fingerprint-order: cardId, join(addCardAssignees), join(removeCardAssignees), label, vehicle_id, token
delete:
tags:
- Cards
summary: Delete Card
description: Endpoint to delete a `Card`.
operationId: card-delete
parameters:
- name: cardId
in: path
required: true
schema:
type: string
description: The `Card` ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
responses:
'204':
description: No content as result.
'400':
description: Your request has missing arguments or is malformed.
'404':
description: One or more resource requested does not exist.
security:
- standardAuth:
- card_write
/business/v2/cards/{cardId}/move/{newWalletId}:
put:
tags:
- Cards
summary: Switch Card Wallet
description: Endpoint to switch the `Card` `Wallet`.
operationId: card-wallet-switch
parameters:
- name: cardId
in: path
required: true
schema:
type: string
description: The `Card` ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
- name: newWalletId
in: path
required: true
schema:
type: string
description: The new `Wallet` ID.
example: 2d65bd5e-3fdf-4002-b166-bde7fb8863fa
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Advanced authentication](ref:advanced-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this endpoint.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Advanced authentication](ref:advanced-authentication): Signature of the `X-Soldo-Fingerprint`.'
example: '{{fingerprint_signature}}'
responses:
'200':
description: The returned resource is a single `Card`.
content:
application/json:
schema:
$ref: '#/components/schemas/Card'
'400':
description: Your request has missing arguments or is malformed.
'404':
description: One or more resource requested does not exist.
security:
- standardAuth:
- card_write
- wallet_write
x-soldo:
fingerprint-order: cardId, newWalletId, token
webhooks:
card_lost:
post:
tags:
- Cards
summary: Card - Card Lost
description: A `Card` has been reported as lost.
operationId: webhook-card-card-lost
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardLostEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_change_status:
post:
tags:
- Cards
summary: Card - Card Change Status
description: A `Card` changed status.
operationId: webhook-card-card-change_status
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardChangeStatusEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_destroyed:
post:
tags:
- Cards
summary: Card - Card Destroyed
description: A `Card` has been destroyed.
operationId: webhook-card-card-destroyed
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardDestroyedEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_activated:
post:
tags:
- Cards
summary: Card - Card Activated
description: A `Card` has been activated.
operationId: webhook-card-card-activated
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardActivatedEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_replaced:
post:
tags:
- Cards
summary: Card - Card Replaced
description: A `Card` has been replaced.
operationId: webhook-card-card-replaced
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardReplacedEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_stolen:
post:
tags:
- Cards
summary: Card - Card Stolen
description: A `Card` has been reported as stolen.
operationId: webhook-card-card-stolen
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardStolenEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_creation:
post:
tags:
- Cards
summary: Card - Card Creation
description: A new `Card` has been created.
operationId: webhook-card-card-creation
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id, name, status, walletId
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardCreationEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_label_updated:
post:
tags:
- Cards
summary: Card - Card Update Label
description: A label `Card` has been updated label.
operationId: webhook-card-card_label_updated
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id,label,token
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardLabelUpdatedEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
card_assignee_updated:
post:
tags:
- Cards
summary: Card - Card Update Assignee
description: A label `Card` has been updated assignee.
operationId: webhook-card-card_assignee_updated
parameters:
- name: X-Soldo-Fingerprint
in: header
required: true
schema:
type: string
default: '{{fingerprint}}'
description: '[Webhook authentication](ref:webhook-authentication): `SHA512SUM` of the fingerprint values listed in the fingerprint order for this webhook.'
example: '{{fingerprint}}'
- name: X-Soldo-Fingerprint-Order
in: header
required: true
schema:
type: string
default: id,join(addCardAssignees),join(removeCardAssignees),token
description: '[Webhook authentication](ref:webhook-authentication): The order of the values used to calculate the fingerprint.'
example: id, name, status, walletId
- name: X-Soldo-Fingerprint-Signature
in: header
required: true
schema:
type: string
default: '{{fingerprint_signature}}'
description: '[Webhook authentication](ref:webhook-authentication): Signature of the `X-Soldo-Fingerprint`. It must be verified using the [Soldo public key](ref:soldo-public-key).'
example: '{{fingerprint_signature}}'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CardAssigneeUpdatedEvent'
responses:
'200':
description: Success.
x-soldo:
fingerprint-order: id, name, status, walletId
components:
schemas:
UpdateCard:
description: Update `Card` JSON parameters.
properties:
label:
type: string
description: The new label of the `Card` (max 60 characters).
example: CardLabel
maxLength: 60
vehicle_id:
type: string
description: The `Vehicle` ID to be assigned to the `Card` - only valid for PLASTIC or FUEL cards (To remove a `Vehicle` set the value to an empty string).
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
shipping_address_id:
type: string
description: The shipping `Address` ID to be assigned to the `Card` .
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
addCardAssignees:
type: array
description: The assignees to be added for the `Card`.
example:
- XMPL1234-000001
- XMPL1234-000002
- XMPL1234-000003
items:
type: string
removeCardAssignees:
type: array
description: The assignees to be remove for the `Card`.
example:
- XMPL1234-000001
- XMPL1234-000002
- XMPL1234-000003
items:
type: string
AddCardType:
type: string
enum:
- PLASTIC
- VIRTUAL
- FUEL
- GOOGLE_CARD
- PLASTIC_CHARGE
- VIRTUAL_CHARGE
CardRenewalInfo:
properties:
expiring_soon:
type: boolean
description: Whether the `Card` is approaching its expiration date.
example: true
renewed_card_ready_for_activation:
type: boolean
description: Whether the renewed `Card` is ready to be activated.
example: true
CardPaymentMethod:
type: string
enum:
- SUBSCRIPTION
- ONLINE_ADS
- PURCHASE
CardDestroyedEvent:
properties:
event_uuid:
type: string
description: The webhook unique ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
event_type:
$ref: '#/components/schemas/WebhookEventType'
default: Card
description: The webhook event type.
example: Card
event_name:
$ref: '#/components/schemas/WebhookEventName'
default: card_destroyed
description: The webhook event name.
example: card_destroyed
company_account_id:
type: string
description: The company account ID.
example: XMPL1234
data:
$ref: '#/components/schemas/Card'
description: The webhook `Card` data.
subscription_id:
type: string
description: The webhook subscription ID used to route this event.
example: 2d65bd5e-3fdf-4002-b166-bde7fb8863fa
CardStatus:
type: string
enum:
- Normal
- Do not honor
- Lost card
- Stolen card
- Expired card
- Restricted card
- Security Violation
- Cardholder to contact the issuer
- Card Destroyed
ISO4217Currency:
type: string
enum:
- AED
- AFN
- ALL
- AMD
- ANG
- AOA
- ARS
- AUD
- AWG
- AZN
- BAM
- BBD
- BDT
- BGN
- BHD
- BIF
- BMD
- BND
- BOB
- BOV
- BRL
- BSD
- BTN
- BWP
- BYN
- BZD
- CAD
- CDF
- CHE
- CHF
- CHW
- CLF
- CLP
- CNY
- COP
- COU
- CRC
- CUC
- CUP
- CVE
- CZK
- DJF
- DKK
- DOP
- DZD
- EGP
- ERN
- ETB
- EUR
- FJD
- FKP
- GBP
- GEL
- GHS
- GIP
- GMD
- GNF
- GTQ
- GYD
- HKD
- HNL
- HRK
- HTG
- HUF
- IDR
- ILS
- INR
- IQD
- IRR
- ISK
- JMD
- JOD
- JPY
- KES
- KGS
- KHR
- KMF
- KPW
- KRW
- KWD
- KYD
- KZT
- LAK
- LBP
- LKR
- LRD
- LSL
- LYD
- MAD
- MDL
- MGA
- MKD
- MMK
- MNT
- MOP
- MRO
- MRU
- MUR
- MVR
- MWK
- MXN
- MXV
- MYR
- MZN
- NAD
- NGN
- NIO
- NOK
- NPR
- NZD
- OMR
- PAB
- PEN
- PGK
- PHP
- PKR
- PLN
- PYG
- QAR
- RON
- RSD
- RUB
- RWF
- SAR
- SBD
- SCR
- SDG
- SEK
- SGD
- SHP
- SLE
- SLL
- SOS
- SRD
- SSP
- STD
- STN
- SVC
- SYP
- SZL
- THB
- TJS
- TMT
- TND
- TOP
- TRY
- TTD
- TWD
- TZS
- UAH
- UGX
- USD
- USN
- UYI
- UYU
- UYW
- UZS
- VED
- VEF
- VES
- VND
- VUV
- WST
- XAF
- XAG
- XAU
- XBA
- XBB
- XBC
- XBD
- XCD
- XDR
- XOF
- XPD
- XPF
- XPT
- XSU
- XTS
- XUA
- XXX
- YER
- ZAR
- ZMW
- ZWL
WebhookEventType:
type: string
enum:
- BusinessTrip
- Card
- Contact
- ExpenseReview
- Group
- OnlineAds
- Order
- Purchase
- Subscription
- Transaction
- TransactionAttachment
- Employee
- Vehicle
- Wallet
CardSensitiveData:
properties:
encrypted_full_pan:
type: string
description: The encrypted PAN of the card.
encrypted_cvv:
type: string
description: The encrypted cvv of the card.
encrypted_pin:
type: string
description: The encrypted pin of the card (only valid for PLASTIC or FUEL card type).
CardType:
type: string
enum:
- PLASTIC
- VIRTUAL
- FUEL
- GOOGLE_CARD
CardAttachedResourceType:
type: string
description: The type of a resource the `Card` is attached to.
enum:
- wallet
- company
- employee
- onlineAd
- subscription
- purchase
example: wallet
CardAssigneeUpdatedEvent:
properties:
event_uuid:
type: string
description: The webhook unique ID.
example: 7bf79328-a7ae-4222-aa54-091ff7f429a7
event_type:
$ref: '#/components/schemas/WebhookEventType'
default: Card
description: The webhook event type.
example: Card
event_name:
$ref: '#/components/schemas/WebhookEventName'
default: card_assign
# --- truncated at 32 KB (55 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/soldo/refs/heads/main/openapi/soldo-cards-api-openapi.yml