> ## Documentation Index
> Fetch the complete documentation index at: https://gnosispay-feat-v2-auth-module.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Set Account Daily Spending Limit

> Sets the daily spending limit for the authenticated user's account.
`amount` is in the currency's smallest unit — for USD that means cents, so
to set a $10.00 limit send `1000`, and the maximum allowed value `1000000`
corresponds to $10,000.00. Must be in (0, 1,000,000]. Only USD is currently
accepted. The response returns the new limit immediately with
`syncStatus: pending` and transitions to `synced` once the change has been
applied downstream.



## OpenAPI

````yaml https://core.prod.gnosispay.com/user-api/openapi.json put /user/account/limit
openapi: 3.1.0
info:
  title: User Service
  version: 0.0.0
servers: []
security: []
tags:
  - name: Health
  - name: Auth
  - name: User
  - name: Cards
  - name: Phone
  - name: PCI
  - name: Terms
  - name: Source of Funds
paths:
  /user/account/limit:
    put:
      tags:
        - User
      summary: Set Account Daily Spending Limit
      description: >-
        Sets the daily spending limit for the authenticated user's account.

        `amount` is in the currency's smallest unit — for USD that means cents,
        so

        to set a $10.00 limit send `1000`, and the maximum allowed value
        `1000000`

        corresponds to $10,000.00. Must be in (0, 1,000,000]. Only USD is
        currently

        accepted. The response returns the new limit immediately with

        `syncStatus: pending` and transitions to `synced` once the change has
        been

        applied downstream.
      operationId: User_setUserAccountLimit
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SetAccountLimitRequest'
      responses:
        '200':
          description: The request has succeeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountLimit'
        '400':
          description: The server could not understand the request due to invalid syntax.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetUserAccountLimitBadRequestBody'
        '401':
          description: Access is unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
        '404':
          description: The server cannot find the requested resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
        '502':
          description: Server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SetUserAccountLimitBadGateway'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - BearerAuth: []
components:
  schemas:
    SetAccountLimitRequest:
      type: object
      required:
        - amount
        - currency
      properties:
        amount:
          type: integer
          format: int64
          minimum: 1
          maximum: 1000000
          description: >-
            Daily limit in the currency's smallest unit (e.g. cents for USD).
            For USD:

            send 1000 to set a $10.00 limit, send 1000000 to set the $10,000.00
            cap.

            Must be in (0, 1,000,000].
        currency:
          type: string
          description: ISO-4217 currency code. Only `USD` is currently accepted.
    AccountLimit:
      type: object
      required:
        - amount
        - currency
        - decimals
        - syncStatus
        - updatedAt
        - spentToday
        - remaining
      properties:
        amount:
          type: integer
          format: int64
          description: >-
            Daily limit in the currency's smallest unit (e.g. cents for USD).
            Divide by

            10^decimals to get the major-unit value. For USD (decimals=2):
            amount=1000

            means $10.00, amount=1000000 means $10,000.00.
        currency:
          type: string
          description: ISO-4217 currency code, e.g. USD.
        decimals:
          type: integer
          format: int32
          description: Number of decimal places for this currency (e.g. 2 for USD).
        syncStatus:
          type: string
          enum:
            - pending
            - synced
            - failed
          description: >-
            Replication state of the limit. 'pending' immediately after an
            update,

            'synced' once the change has been applied, 'failed' if the change
            could not

            be applied after retries.
        updatedAt:
          type: string
          format: date-time
          description: Last time this limit was modified.
        spentToday:
          type: integer
          format: int64
          description: >-
            Amount spent today against this limit, in the currency's smallest
            unit

            (e.g. cents for USD). Resets at the start of each calendar day.
        remaining:
          type: integer
          format: int64
          description: >-
            Remaining headroom today, in the currency's smallest unit. Equals
            max(0,

            amount - spentToday).
    SetUserAccountLimitBadRequestBody:
      type: object
      oneOf:
        - $ref: '#/components/schemas/SetUserAccountLimitValidationError'
        - $ref: '#/components/schemas/SetUserAccountLimitBusinessError'
      discriminator:
        propertyName: kind
        mapping:
          validation:
            $ref: '#/components/schemas/SetUserAccountLimitValidationError'
          business:
            $ref: '#/components/schemas/SetUserAccountLimitBusinessError'
      description: |-
        Discriminated 400 body for setting account limits. Both variants include
        `kind` so clients can branch on validation vs business failures.
    Unauthorized:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    NotFound:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    SetUserAccountLimitBadGateway:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    Error:
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
    SetUserAccountLimitValidationError:
      type: object
      required:
        - kind
        - success
        - error
      properties:
        kind:
          type: string
          enum:
            - validation
        success:
          type: boolean
          enum:
            - false
        error:
          $ref: '#/components/schemas/ValidationErrorDetail'
      description: Validation failure when the account limit request cannot be decoded.
    SetUserAccountLimitBusinessError:
      type: object
      required:
        - kind
        - success
        - error
      properties:
        kind:
          type: string
          enum:
            - business
        success:
          type: boolean
          enum:
            - false
        error:
          type: string
      description: Business failure when the requested account limit is not accepted.
    ValidationErrorDetail:
      type: object
      required:
        - name
        - message
      properties:
        name:
          type: string
          enum:
            - ValidationError
        message:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: Bearer

````