Cards

Generate Card Invoice Statement CSV URL

get

Generate Card Invoice Statement CSV URL for an invoice

Path parameters
idstringRequired

Invoice ID

Query parameters
entity_idstringRequired

Entity ID

card_idstringOptional

Card ID

Responses
201
Created
application/json
get
GET /banking/cards/invoices/{id}/export HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "from_datetime": "2024-11-04T14:24:28.430838Z",
    "to_datetime": "2024-11-04T14:24:28.430838Z",
    "url": "https://app.trio.com.br/invoice_statements/closed/company/org/entidade_0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b.csv"
  }
}

List Card Invoices

get

List Card Invoices

Query parameters
entity_idstringRequired

Entity ID

beforestringOptional

Parameter used for pagination. It is a base64 encoded param used to access the previous page of results. It is provided alongside a metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJDU4ZjFlYzhlLWFmYTktNDk0My05M2I1LWQ2ZGM3OWI0M2VhYQ==
afterstringOptional

Parameter used for pagination. It's a base64 encoded param used to access the previous page of results. Provided along with the data in the metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJGJhYTNiNmM1LTAyYTYtNGQ5Ny05NzU1LTI3OGFiNjRiN2Y1MQ==
limitintegerOptional

Parameter used for pagination.

Responses
200
Invoices
application/json
get
GET /banking/cards/invoices HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": [
    {
      "balance": 10000,
      "company_id": "0182b3d1-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "entity_id": "0182b3d3-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "from_datetime": "2025-06-11T03:00:00.000000Z",
      "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "org_id": "0182b3d2-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "pending_confirmation_amount": 10000,
      "purchase_balance": 10000,
      "status": "open",
      "to_datetime": "2025-06-12T03:00:00.000000Z"
    }
  ]
}

Cancel a card

post

Cancel an existing card

Path parameters
idstring · uuidRequired

Unique identifier

Responses
204
Canceled
application/json
Responsestring · stringExample: No Content
post
POST /banking/cards/{id}/cancel HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
No Content

Get card details

get

Card sensitive information: holder name, card number, expiration date and cvv

Path parameters
idstring · uuidRequired

Unique identifier

Responses
200
Card Details
application/json
get
GET /banking/cards/{id}/info HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "expiration_date": "2022-12-31T23:59:59Z",
    "holder_name": "John Doe",
    "number": "5209199870273875",
    "security_code": "123"
  }
}

Transfer card balance to another card

post

Transfer card balance to another card

Path parameters
idstringRequired

From card ID

Body

Card transfer balance params

amountintegerRequired

Amount to transfer (R$)

destination_card_idstringRequired

Destination card UUID

entity_idstringRequired

Entity UUID

Responses
204
Transferred
application/json
Responsestring · stringExample: No Content
post
POST /banking/cards/{id}/transfer_balance HTTP/1.1
Host: api.sandbox.trio.com.br
Content-Type: application/json
Accept: */*
Content-Length: 127

{
  "amount": 1000,
  "destination_card_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
  "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7"
}
No Content

List Card Invoice Lines

get

List lines for a specific Card Invoice

Path parameters
idstringRequired

Invoice ID

Query parameters
entity_idstringRequired

Entity ID

beforestringOptional

Parameter used for pagination. It is a base64 encoded param used to access the previous page of results. It is provided alongside a metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJDU4ZjFlYzhlLWFmYTktNDk0My05M2I1LWQ2ZGM3OWI0M2VhYQ==
afterstringOptional

Parameter used for pagination. It's a base64 encoded param used to access the previous page of results. Provided along with the data in the metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJGJhYTNiNmM1LTAyYTYtNGQ5Ny05NzU1LTI3OGFiNjRiN2Y1MQ==
limitintegerOptional

Parameter used for pagination.

Responses
200
Invoice Lines
application/json
get
GET /banking/cards/invoices/{id}/lines HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": [
    {
      "amount": {
        "amount": 10000,
        "currency": "BRL"
      },
      "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "card_number": "5555 **** **** 1234",
      "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "invoice_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "line_category": "food",
      "line_status": "confirmed",
      "line_title": "Fast Food",
      "ref_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "ref_type": "purchase",
      "timestamp": "2020-01-01T00:00:00Z"
    }
  ]
}

Block a card

post

Block an existing card

Path parameters
idstring · uuidRequired

Unique identifier

Responses
204
Blocked
application/json
Responsestring · stringExample: No Content
post
POST /banking/cards/{id}/block HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
No Content

Get a card

get

Get an existing card

Path parameters
idstring · uuidRequired

Unique identifier

Responses
200
Card
application/json
get
GET /banking/cards/{id} HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "balance": 0,
    "company_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "display_name": "marketing card",
    "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "holder_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "masked_number": "5555 **** **** 1234",
    "org_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "status": "active",
    "type": "virtual"
  }
}

Update a card

put

Update card display name

Path parameters
idstring · uuidRequired

Unique identifier

Body

Card update params

display_namestringRequired

Display name

Responses
204
Updated
application/json
Responsestring · stringExample: No Content
put
PUT /banking/cards/{id} HTTP/1.1
Host: api.sandbox.trio.com.br
Content-Type: application/json
Accept: */*
Content-Length: 37

{
  "display_name": "New marketing card"
}
No Content

Get Card current Invoice

get

Get Card current Invoice

Query parameters
entity_idstringRequired

Entity ID

Responses
200
Invoice
application/json
get
GET /banking/cards/invoices/current HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "balance": 10000,
    "company_id": "0182b3d1-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "entity_id": "0182b3d3-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "from_datetime": "2025-06-11T03:00:00.000000Z",
    "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "org_id": "0182b3d2-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "pending_confirmation_amount": 10000,
    "purchase_balance": 10000,
    "status": "open",
    "to_datetime": "2025-06-12T03:00:00.000000Z"
  }
}

List Card purchase documents

get

List Card purchase documents

Query parameters
entity_idstring · uuidRequired

Unique identifier

from_datetimestringRequired

From datetime

to_datetimestringRequired

To datetime

card_idstring · uuidOptional

Unique identifier

category_codestringOptional

Category Code

category_typestringOptional

Category Type

beforestringOptional

Parameter used for pagination. It is a base64 encoded param used to access the previous page of results. It is provided alongside a metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJDU4ZjFlYzhlLWFmYTktNDk0My05M2I1LWQ2ZGM3OWI0M2VhYQ==
afterstringOptional

Parameter used for pagination. It's a base64 encoded param used to access the previous page of results. Provided along with the data in the metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJGJhYTNiNmM1LTAyYTYtNGQ5Ny05NzU1LTI3OGFiNjRiN2Y1MQ==
limitintegerOptional

Parameter used for pagination.

statusstringOptional

Status

order_bystringOptional

Order by

Responses
200
Documents
application/json
get
GET /banking/cards/purchases HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": [
    {
      "receipt_url": "https://app.trio.com.br/receipt/0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "is_partially_allowed": false,
      "holder_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "inserted_at": "2021-01-01T00:00:00Z",
      "wallet_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "entity_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "issuer_amount": {
        "amount": 10000,
        "currency": "BRL"
      },
      "category_type": "restaurants",
      "tax": {
        "amount": 10,
        "currency": "BRL"
      },
      "merchant_country_code": "BR",
      "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "category_code": "foodAndBeverages",
      "method_code": "manual",
      "company_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "status": "confirmed",
      "updated_at": "2021-01-01T00:00:00Z",
      "description": "description",
      "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "purpose": "purchase",
      "merchant_amount": {
        "amount": 10000,
        "currency": "BRL"
      },
      "merchant_currency_symbol": "R$",
      "zip_code": "000000-000",
      "merchant_name": "John Doe Store",
      "category_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "error_code": "null",
      "error_message": "null",
      "end_to_end_id": "EE202506111406IVIN5pXVoyp",
      "timestamp": "2021-01-01T00:00:00Z",
      "org_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
      "compress_timestamp": "2021-01-01T00:00:00Z",
      "amount": {
        "amount": 10000,
        "currency": "BRL"
      },
      "score": "1.0",
      "merchant_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b"
    }
  ]
}

Top Up card balance

post

Top Up card balance

Path parameters
idstringRequired

Card ID

Body

Card top up balance params

amountintegerRequired

Amount to top up (R$)

entity_idstringRequired

Entity UUID

origin_bank_account_idstringRequired

Source bank account UUID

Responses
204
Top Up Successful
application/json
Responsestring · stringExample: No Content
post
POST /banking/cards/{id}/topup HTTP/1.1
Host: api.sandbox.trio.com.br
Content-Type: application/json
Accept: */*
Content-Length: 130

{
  "amount": 1000,
  "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
  "origin_bank_account_id": "019514eb-5d5c-b395-5a77-449d12701ce7"
}
No Content

List cards

get

List cards

Query parameters
entity_idstring · uuidRequired

Unique identifier

card_last_digitsstringOptional

Card Last Four Digits

display_namestringOptional

Card Display Name

holder_namestringOptional

Card Holder Name

holder_tax_numberstringOptional

Card Holder Tax Number

beforestringOptional

Parameter used for pagination. It is a base64 encoded param used to access the previous page of results. It is provided alongside a metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJDU4ZjFlYzhlLWFmYTktNDk0My05M2I1LWQ2ZGM3OWI0M2VhYQ==
afterstringOptional

Parameter used for pagination. It's a base64 encoded param used to access the previous page of results. Provided along with the data in the metadata section if there is a previous page.

Example: g3QAAAABZAACaWRtAAAAJGJhYTNiNmM1LTAyYTYtNGQ5Ny05NzU1LTI3OGFiNjRiN2Y1MQ==
limitintegerOptional

Parameter used for pagination.

Responses
200
Cards
application/json
get
GET /banking/cards HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": [
    {
      "balance": 0,
      "company_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
      "display_name": "marketing card",
      "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
      "holder_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
      "id": "019514eb-5d5c-b395-5a77-449d12701ce7",
      "masked_number": "5555 **** **** 1234",
      "org_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
      "status": "active",
      "type": "virtual"
    }
  ]
}

Create a card

post

Create a new card

Body

Card create params

display_namestringRequired

Display name

entity_idstringRequired

Entity UUID

holder_namestring | nullableOptional

Holder Name

Responses
201
Card
application/json
post
POST /banking/cards HTTP/1.1
Host: api.sandbox.trio.com.br
Content-Type: application/json
Accept: */*
Content-Length: 109

{
  "display_name": "marketing card",
  "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
  "holder_name": "John Doe"
}
{
  "data": {
    "balance": 0,
    "company_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "display_name": "marketing card",
    "entity_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "holder_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "masked_number": "5555 **** **** 1234",
    "org_id": "019514eb-5d5c-b395-5a77-449d12701ce7",
    "status": "active",
    "type": "virtual"
  }
}

Show card purchase document by end to end id

get

Show card purchase document by end to end id

Path parameters
idstringRequired

Unique identifier for transactions

Example: EE202506111406IVIN5pXVoyp
Query parameters
timestampstringRequired

Timestamp

Responses
200
Document
application/json
get
GET /banking/cards/purchases/e2e/{id} HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "receipt_url": "https://app.trio.com.br/receipt/0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "is_partially_allowed": false,
    "holder_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "stages": [
      {
        "is_partially_allowed": false,
        "holder_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "inserted_at": "2021-01-01T00:00:00Z",
        "wallet_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "entity_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "issuer_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "category_type": "restaurants",
        "tax": {
          "amount": 10,
          "currency": "BRL"
        },
        "merchant_country_code": "BR",
        "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "category_code": "foodAndBeverages",
        "method_code": "manual",
        "company_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "status": "confirmed",
        "updated_at": "2021-01-01T00:00:00Z",
        "description": "description",
        "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "purpose": "purchase",
        "merchant_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "purchase_document_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "merchant_currency_symbol": "R$",
        "zip_code": "000000-000",
        "merchant_name": "John Doe Store",
        "category_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "callback_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "error_code": "null",
        "error_message": "null",
        "end_to_end_id": "EE202506111406IVIN5pXVoyp",
        "timestamp": "2021-01-01T00:00:00Z",
        "callback_type": "approved",
        "org_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "score": "1.0",
        "merchant_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b"
      }
    ],
    "inserted_at": "2021-01-01T00:00:00Z",
    "wallet_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "entity_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "issuer_amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "category_type": "restaurants",
    "tax": {
      "amount": 10,
      "currency": "BRL"
    },
    "merchant_country_code": "BR",
    "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "category_code": "foodAndBeverages",
    "method_code": "manual",
    "company_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "status": "confirmed",
    "updated_at": "2021-01-01T00:00:00Z",
    "description": "description",
    "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "purpose": "purchase",
    "merchant_amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "merchant_currency_symbol": "R$",
    "zip_code": "000000-000",
    "merchant_name": "John Doe Store",
    "category_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "error_code": "null",
    "error_message": "null",
    "end_to_end_id": "EE202506111406IVIN5pXVoyp",
    "timestamp": "2021-01-01T00:00:00Z",
    "org_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "compress_timestamp": "2021-01-01T00:00:00Z",
    "amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "score": "1.0",
    "merchant_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b"
  }
}

Show Card purchase document by id

get

Show Card purchase document by id

Path parameters
idstring · uuidRequired

Unique identifier

Responses
200
Document
application/json
get
GET /banking/cards/purchases/{id} HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
{
  "data": {
    "receipt_url": "https://app.trio.com.br/receipt/0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "is_partially_allowed": false,
    "holder_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "stages": [
      {
        "is_partially_allowed": false,
        "holder_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "inserted_at": "2021-01-01T00:00:00Z",
        "wallet_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "entity_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "issuer_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "category_type": "restaurants",
        "tax": {
          "amount": 10,
          "currency": "BRL"
        },
        "merchant_country_code": "BR",
        "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "category_code": "foodAndBeverages",
        "method_code": "manual",
        "company_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "status": "confirmed",
        "updated_at": "2021-01-01T00:00:00Z",
        "description": "description",
        "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "purpose": "purchase",
        "merchant_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "purchase_document_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "merchant_currency_symbol": "R$",
        "zip_code": "000000-000",
        "merchant_name": "John Doe Store",
        "category_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "callback_amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "error_code": "null",
        "error_message": "null",
        "end_to_end_id": "EE202506111406IVIN5pXVoyp",
        "timestamp": "2021-01-01T00:00:00Z",
        "callback_type": "approved",
        "org_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
        "amount": {
          "amount": 10000,
          "currency": "BRL"
        },
        "score": "1.0",
        "merchant_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b"
      }
    ],
    "inserted_at": "2021-01-01T00:00:00Z",
    "wallet_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "entity_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "issuer_amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "category_type": "restaurants",
    "tax": {
      "amount": 10,
      "currency": "BRL"
    },
    "merchant_country_code": "BR",
    "card_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "category_code": "foodAndBeverages",
    "method_code": "manual",
    "company_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "status": "confirmed",
    "updated_at": "2021-01-01T00:00:00Z",
    "description": "description",
    "id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "purpose": "purchase",
    "merchant_amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "merchant_currency_symbol": "R$",
    "zip_code": "000000-000",
    "merchant_name": "John Doe Store",
    "category_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "error_code": "null",
    "error_message": "null",
    "end_to_end_id": "EE202506111406IVIN5pXVoyp",
    "timestamp": "2021-01-01T00:00:00Z",
    "org_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b",
    "compress_timestamp": "2021-01-01T00:00:00Z",
    "amount": {
      "amount": 10000,
      "currency": "BRL"
    },
    "score": "1.0",
    "merchant_id": "0182b3d0-0b3b-4b3b-8b3b-0b3b4b3b8b3b"
  }
}

Unblock a card

post

Unblock an existing card

Path parameters
idstring · uuidRequired

Unique identifier

Responses
204
Unblocked
application/json
Responsestring · stringExample: No Content
post
POST /banking/cards/{id}/unblock HTTP/1.1
Host: api.sandbox.trio.com.br
Accept: */*
No Content

Was this helpful?