Upward Financial paymentCards API

The paymentCards API from Upward Financial — 10 operation(s) for paymentcards.

Operations 11

GET /v2/payment-cards/{payment_card_id}/transactions/ List Payment Card Transactions #
GET /v2/payment-cards/{payment_card_id}/transactions/{transaction_id} Retrieve Payment Card Transaction #
GET /v2/payment-cards/{payment_card_id}/emboss Get Payment Card Emboss #
POST /v2/payment-cards/{payment_card_id}/emboss Payment Card Emboss #
GET /v2/payment-cards/{payment_card_id}/ Get Payment Card #
POST /v2/payment-cards/{payment_card_id}/freeze Freeze Payment Card #
POST /v2/payment-cards/{payment_card_id}/unfreeze Unfreeze Card #
POST /v2/payment-cards/{payment_card_id}/replace-lost-stolen Replace Lost Stolen Card Request #
POST /v2/payment-cards/{payment_card_id}/reissue Trigger Reissue Card #
POST /v2/payment-cards/{payment_card_id}/close/ Close Card Account #
PUT /v2/payment-cards/{payment_card_id}/autopay Set Autopay Status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/upward-financial-paymentcards-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

upward-financial-paymentcards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reference accounts Payment Cards API
  version: 1.0.0
servers:
- url: https://host.com
  description: Default
tags:
- name: paymentCards
paths:
  /v2/payment-cards/{payment_card_id}/transactions/:
    get:
      operationId: list-payment-card-transactions
      summary: List Payment Card Transactions
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: limit
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        description: The initial index from which to return the results.
        required: false
        schema:
          type: integer
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payment_Cards_listPaymentCardTransactions_Response_200'
  /v2/payment-cards/{payment_card_id}/transactions/{transaction_id}:
    get:
      operationId: retrieve-payment-card-transaction
      summary: Retrieve Payment Card Transaction
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: transaction_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Payment_Cards_retrievePaymentCardTransaction_Response_200'
  /v2/payment-cards/{payment_card_id}/emboss:
    get:
      operationId: get-payment-card-emboss
      summary: Get Payment Card Emboss
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Emboss'
    post:
      operationId: payment-card-emboss
      summary: Payment Card Emboss
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Emboss'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Emboss'
  /v2/payment-cards/{payment_card_id}/:
    get:
      operationId: get-payment-card
      summary: Get Payment Card
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaymentCard'
  /v2/payment-cards/{payment_card_id}/freeze:
    post:
      operationId: freeze-payment-card
      summary: Freeze Payment Card
      description: freeze/unfreeze a payment card
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreezeUnfreezePaymentCardResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FreezePaymentCardRequest'
  /v2/payment-cards/{payment_card_id}/unfreeze:
    post:
      operationId: unfreeze-card
      summary: Unfreeze Card
      description: unfreeze a payment card
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FreezeUnfreezePaymentCardResponse'
      requestBody:
        content:
          application/json:
            schema:
              description: Any type
  /v2/payment-cards/{payment_card_id}/replace-lost-stolen:
    post:
      operationId: replace-lost-stolen-card-request
      summary: Replace Lost Stolen Card Request
      description: Replace a lost or stolen card
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LostStolenCardResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LostStolenCardRequest'
  /v2/payment-cards/{payment_card_id}/reissue:
    post:
      operationId: trigger-reissue-card
      summary: Trigger Reissue Card
      description: Reissue a card, which means to send it to the embosser again
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReissueCardResponse'
      requestBody:
        content:
          application/json:
            schema:
              description: Any type
  /v2/payment-cards/{payment_card_id}/close/:
    post:
      operationId: close-card-account
      summary: Close Card Account
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloseAccountResponse'
      requestBody:
        content:
          application/json:
            schema:
              description: Any type
  /v2/payment-cards/{payment_card_id}/autopay:
    put:
      operationId: set-autopay-status
      summary: Set Autopay Status
      description: ''
      tags:
      - paymentCards
      parameters:
      - name: payment_card_id
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: Bearer authentication
        required: true
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetAutopayResponse'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetAutopayRequest'
components:
  schemas:
    ReissueCardResponse:
      type: object
      properties:
        card_status:
          type: string
      required:
      - card_status
      title: ReissueCardResponse
    LostStolenCardResponse:
      type: object
      properties:
        card_status:
          type: string
      required:
      - card_status
      title: LostStolenCardResponse
    CloseAccountResponse:
      type: object
      properties:
        close_account_id:
          type: string
          format: uuid
      required:
      - close_account_id
      title: CloseAccountResponse
    FreezeUnfreezePaymentCardResponse:
      type: object
      properties:
        account_status:
          type: string
      required:
      - account_status
      title: FreezeUnfreezePaymentCardResponse
    Payment_Cards_retrievePaymentCardTransaction_Response_200:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
        amount:
          type: number
          format: double
        posted_at:
          type: string
          format: date-time
        effective_at:
          type: string
          format: date-time
        description:
          type: string
        direction:
          type: string
        mcc:
          type: string
        merchant_name:
          type: string
        merchant_id:
          type: string
        transaction_type:
          type: string
        related_transaction_id:
          type: string
          format: uuid
      required:
      - id
      - status
      - amount
      - posted_at
      - effective_at
      - description
      - direction
      - mcc
      - merchant_name
      - merchant_id
      - transaction_type
      - related_transaction_id
      title: Payment Cards_retrievePaymentCardTransaction_Response_200
    Emboss:
      type: object
      properties:
        operation:
          $ref: '#/components/schemas/EmbossOperation'
        shipping:
          $ref: '#/components/schemas/EmbossShipping'
        result:
          type: boolean
      required:
      - operation
      title: Emboss
    EmbossOperation:
      type: string
      enum:
      - hold
      - unhold
      title: EmbossOperation
    V2PaymentCardsPaymentCardIdTransactionsGetResponsesContentApplicationJsonSchemaResultsItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
        amount:
          type: number
          format: double
        posted_at:
          type: string
          format: date-time
        effective_at:
          type: string
          format: date-time
        description:
          type: string
        direction:
          type: string
        mcc:
          type: string
        merchant_name:
          type: string
        merchant_id:
          type: string
        transaction_type:
          type: string
        related_transaction_id:
          type: string
          format: uuid
      required:
      - id
      - status
      - amount
      - posted_at
      - effective_at
      - description
      - direction
      - mcc
      - merchant_name
      - merchant_id
      - transaction_type
      - related_transaction_id
      title: V2PaymentCardsPaymentCardIdTransactionsGetResponsesContentApplicationJsonSchemaResultsItems
    SetAutopayResponse:
      type: object
      properties:
        autopay_enabled:
          type: boolean
      required:
      - autopay_enabled
      title: SetAutopayResponse
    PaymentCardStatus:
      type: string
      enum:
      - in_progress
      - active
      - frozen
      - closed
      - canceled
      - in_default
      title: PaymentCardStatus
    Payment_Cards_listPaymentCardTransactions_Response_200:
      type: object
      properties:
        count:
          type: integer
        next:
          type:
          - string
          - 'null'
          format: uri
        previous:
          type:
          - string
          - 'null'
          format: uri
        results:
          type: array
          items:
            $ref: '#/components/schemas/V2PaymentCardsPaymentCardIdTransactionsGetResponsesContentApplicationJsonSchemaResultsItems'
      required:
      - count
      - results
      title: Payment Cards_listPaymentCardTransactions_Response_200
    SetAutopayRequest:
      type: object
      properties:
        enabled:
          type: boolean
      required:
      - enabled
      title: SetAutopayRequest
    EmbossShipping:
      type: string
      enum:
      - standard
      - express
      default: standard
      title: EmbossShipping
    FreezePaymentCardRequest:
      type: object
      properties:
        end_date:
          type: string
          format: date-time
      required:
      - end_date
      title: FreezePaymentCardRequest
    PaymentCard:
      type: object
      properties:
        id:
          type: string
        consumer_id:
          type: string
        card_config_id:
          type: string
        status:
          $ref: '#/components/schemas/PaymentCardStatus'
        emboss_hold:
          type: boolean
        available_balance:
          type: string
        account_number:
          type: string
        routing_number:
          type: string
        created_at:
          type: string
          format: date-time
        autopay_enabled:
          type: boolean
        outstanding_balance:
          type: string
        pin_lock:
          type: boolean
        display_name:
          type: string
      title: PaymentCard
    LostStolenCardRequest:
      type: object
      properties:
        card_status:
          type: string
      required:
      - card_status
      title: LostStolenCardRequest
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer