> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reap.global/llms.txt
> Use this file to discover all available pages before exploring further.

# Push-provision card

> Generates the credentials needed to add a card to a digital wallet directly from your app, without the cardholder entering card details. Pass the result to the wallet SDK to complete provisioning. Each call returns fresh, single-use credentials.



## OpenAPI

````yaml /api-reference/openapi.json post /cards/{id}/push-provisioning
openapi: 3.1.0
info:
  title: Reap API
  version: 1.0.0
  description: Reap platform API
servers:
  - url: https://sandbox.api.reap.global
    description: Sandbox
  - url: https://prod.api.reap.global
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Accounts
  - name: Activities
  - name: Card Designs
  - name: Card Shipments
  - name: Card Transactions
  - name: Cards
  - name: Companies
  - name: Crypto Deposits
  - name: Policies
  - name: Simulation
  - name: Users
  - name: Virtual Asset Postings
  - name: Virtual Assets
  - name: Webhooks
paths:
  /cards/{id}/push-provisioning:
    post:
      tags:
        - Cards
      summary: Push-provision card
      description: >-
        Generates the credentials needed to add a card to a digital wallet
        directly from your app, without the cardholder entering card details.
        Pass the result to the wallet SDK to complete provisioning. Each call
        returns fresh, single-use credentials.
      operationId: generatePushProvisioning_cards
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: Reap-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-02-14'
            description: API version (YYYY-MM-DD)
            example: '2025-02-14'
        - name: Idempotency-Key
          in: header
          required: false
          schema:
            type: string
            minLength: 1
            maxLength: 255
            description: >-
              Unique key for safely retrying this request. Up to 255 characters;
              we recommend a UUIDv4. The first request executes and its response
              is cached; subsequent requests with the same key replay the cached
              response (24h retention).
      requestBody:
        description: Request body for generating push provisioning credentials.
        required: true
        content:
          application/json:
            schema:
              oneOf:
                - $ref: '#/components/schemas/GooglePushProvisioningRequest'
                  title: GooglePushProvisioningRequest
          application/x-www-form-urlencoded:
            schema:
              oneOf:
                - $ref: '#/components/schemas/GooglePushProvisioningRequest'
                  title: GooglePushProvisioningRequest
          multipart/form-data:
            schema:
              oneOf:
                - $ref: '#/components/schemas/GooglePushProvisioningRequest'
                  title: GooglePushProvisioningRequest
      responses:
        '200':
          description: >-
            Push provisioning credentials. The shape is determined by
            `provider`.
          content:
            application/json:
              schema:
                oneOf:
                  - $ref: '#/components/schemas/GooglePushProvisioningResult'
                    title: GooglePushProvisioningResult
                title: Push Provisioning
        '404':
          description: Card not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: CARD_NOT_FOUND
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: CardNotFoundError
        '502':
          description: Failed to generate push provisioning credentials
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        const: PUSH_PROVISIONING_FAILED
                      message:
                        type: string
                      detail:
                        anyOf:
                          - type: object
                            additionalProperties: {}
                          - type: 'null'
                    required:
                      - code
                      - message
                      - detail
                required:
                  - error
                title: PushProvisioningFailedError
components:
  schemas:
    GooglePushProvisioningRequest:
      type: object
      properties:
        provider:
          type: string
          const: GOOGLE_PAY
          description: Digital wallet the card is being added to
        walletAccountId:
          type: string
          description: >-
            Wallet account identifier obtained from the Google `TapAndPay`
            client on the device
        deviceId:
          type: string
          description: >-
            Stable device hardware identifier obtained from the Google
            `TapAndPay` client
      required:
        - provider
        - walletAccountId
        - deviceId
      description: Push provisioning request for Google Pay
      title: Google Pay
    GooglePushProvisioningResult:
      type: object
      properties:
        provider:
          type: string
          const: GOOGLE_PAY
        opc:
          type: string
          description: >-
            Opaque payment credential to pass to the Google `TapAndPay` push
            tokenization request
        last4:
          type: string
          description: Last 4 digits of the card number
      required:
        - provider
        - opc
        - last4
      description: Google Pay push provisioning credentials
      title: Google Pay
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key as Bearer token

````