Bankei BaaS Admin
  1. Card
Bankei BaaS Admin
  • Introduction
  • API Security and Authentication
  • Handling Monetary Values in Our System
  • Secure API Credential Exchange Process
  • Organization
    • Get Organization
      GET
  • Admin Account
    • Get Account Information
      GET
  • User
    • Create User - Basic
      POST
    • Get User
      GET
  • KYC
    • Request KYC Analisys - Company
      POST
    • Get KYC Analisys Status
      GET
    • Request KYC Analisys - Consumer
      POST
    • Send KYC Document
      POST
  • Checking Account
    • Get Account Information
      GET
    • Get Account Balance
      GET
    • Create Checking Account
      POST
    • Get Account Transactions
      GET
  • Card
    • Get Card Groups
      GET
    • Create Nominated Card
      POST
    • Get Cards
      GET
    • Get Card Shipping
      GET
    • Activate Nominated Card
      POST
    • Temporary Disable Card
      POST
    • Enable Temporary Disable Card
      POST
    • Block Card
      POST
    • Get Card Sensitive Information
      GET
  • Pix
    • Generate Pix-In Static BR Code
    • Generate Pix-In Dynamic Cob BR Code
    • Generate Pix-In Dynamic CobV BR Code
    • Get Account Pix Keys
    • Generate Pix Key
  • Pix Out
    • Preview Pix BrCode Payment
    • Preview Pix Key Payment
    • Confirm Pix Payment
  • Bill Payment
    • Line vs. Barcode
    • Bill Payment Preview
    • Create Bill Payment
  • Invoice
    • Generate Invoice
  • Receipt
    • Get Transaction Receipt
  • Webhook
    • Bill Payment Webhook Events
    • Create Webhook Subscription
    • Get Webhook Subscriptions
    • Delete Webhook Subscription
    • Get Webhook Events
    • Get Webhook Event Detail
    • Get Webhook Send Attempts
    • Get Webhook Send Attempt Detail
    • Dispatch Webhook Events
  • Sandbox
    • Pay Pix BrCode [Sandbox Only]
    • Confirm Bill Payment [Sandbox Only]
    • Reject Bill Payment [Sandbox Only]
    • Approve Kyc Analisys [Sandbox Only]
  • Schemas
    • Account
    • Asset
    • Metadata
    • Address
    • Consumer
  1. Card

Get Card Shipping

GET
/api/card/shipping

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Query Params

Header Params

Responses

🟢200Success
application/json
Body

🟠404Not Found
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://baas-api.np.bankei.com.br/api/card/shipping?cardId=d820c784-0618-4e89-8b83-294711317665' \
--header 'x-signature: ' \
--header 'x-timestamp: ' \
--header 'x-endpoint: ' \
--header 'x-org-id: ' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "externalTrackingId": "f923da123",
    "status": "CREATED",
    "statusDetail": "CREATED",
    "shipmentType": "SINGLE_CARD",
    "courier": {
        "company": "ANDREANI",
        "trackingUrl": "https://tracking.fastshipping.com/d820c784-0618-4e89-8b83-294711317665"
    },
    "countryCode": "BR",
    "createdAt": "2026-01-16T14:12:11.1354693+00:00",
    "address": {
        "streetName": "Rua das flores",
        "streetNumber": "67A",
        "floor": "5",
        "apartment": "A",
        "city": "São Paulo",
        "region": "SP",
        "country": "BR",
        "zipCode": "12345000",
        "neighborhood": "Centro",
        "additionalInfo": "Perto do mercado ABC"
    },
    "receiver": {
        "fullName": "João Da Silva",
        "email": "john.doe@example.com",
        "documentType": "RG",
        "documentNumber": "1234567",
        "taxIdentificationNumber": "12345678910",
        "telephoneNumber": "(21) 98765-4321"
    },
    "cardId": "d820c784-0618-4e89-8b83-294711317665",
    "dueDeliveryDate": "2026-01-21T14:12:11.1382614+00:00",
    "courierAdditionalInfo": {
        "status": "ENTREGA",
        "statusDetail": "ENTREGA CERTIFICADA",
        "receivedBy": "Franco Iglesias"
    },
    "requestStatus": "PENDING_UPDATE_ADDRESS"
}
Modified at 2026-01-16 14:10:44
Previous
Get Cards
Next
Activate Nominated Card
Built with