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

# Update fixed limit for card accounts

> This endpoint allows updating the fixed limit for one or multiple card accounts.

The request body should contain either a single object or an array of objects, where each object represents a card account with its associated fixed limit.

- For a single card account:
  ```
  {
    "cardAccountId": "string",
    "limit": number
  }
  ```

- For multiple card accounts:
  ```
  [
    {
      "cardAccountId": "string",
      "limit": number
    },
    ...
  ]
  ```

The response will indicate whether the fixed limit was updated successfully or if there was an error.




## OpenAPI

````yaml /issuing/api-reference/openapi.yaml post /cardaccounts/fixed-limit
openapi: 3.1.0
info:
  title: API Reference
  version: '1.0'
servers:
  - url: https://access.utgl.io/v1
  - url: https://sandbox.access.utgl.io/v1
security:
  - Basic: []
  - Bearer: []
tags:
  - name: Accounts
  - name: Transactions
  - name: Card Accounts
  - name: Card Products
  - name: Cards
  - name: Digital Custody
  - name: Fee
  - name: Payout
paths:
  /cardaccounts/fixed-limit:
    post:
      tags:
        - Card Accounts
      summary: Update fixed limit for card accounts
      description: >
        This endpoint allows updating the fixed limit for one or multiple card
        accounts.


        The request body should contain either a single object or an array of
        objects, where each object represents a card account with its associated
        fixed limit.


        - For a single card account:
          ```
          {
            "cardAccountId": "string",
            "limit": number
          }
          ```

        - For multiple card accounts:
          ```
          [
            {
              "cardAccountId": "string",
              "limit": number
            },
            ...
          ]
          ```

        The response will indicate whether the fixed limit was updated
        successfully or if there was an error.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              oneOf:
                - type: object
                  properties:
                    cardAccountId:
                      type: string
                      description: The unique identifier of the card account.
                    limit:
                      type: number
                      description: The new fixed limit to be set for the card account.
                - type: array
                  items:
                    type: object
                    properties:
                      cardAccountId:
                        type: string
                        description: The unique identifier of a card account in the array.
                      limit:
                        type: number
                        description: >-
                          The new fixed limit to be set for the card account in
                          the array.
      responses:
        '200':
          description: Fixed limit updated successfully
components:
  securitySchemes:
    Basic:
      type: http
      scheme: basic
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````