---
title: "Change Onchain Daily Limit with Signature"
method: PUT
path: "/api/v1/accounts/onchain-daily-limit"
tags: ["Account Management"]
deprecated: true
---

# Change Onchain Daily Limit with Signature

`PUT /api/v1/accounts/onchain-daily-limit`

> **Deprecated.**

This endpoint is deprecated and will be removed in a future version.
Please use `PUT /api/v1/accounts/daily-limit` instead.

Sets a new onchain daily spending limit for the authenticated user's Safe account.
This endpoint requires a valid signature from the user's wallet to authorize the change.

The signature should be generated by signing the transaction data obtained from
the `/api/v1/accounts/onchain-daily-limit/transaction-data` endpoint.

The limit update is processed through a delay relay mechanism that executes after 3 minutes.

**Note:** The onchainDailyLimit must be an integer value between 1 and 8000.

## Request body

- object
  - `onchainDailyLimit` integer, required — The new daily spending limit to set (must be an integer).
  - `signature` string, required — The wallet signature authorizing this limit change.

## Response `200`

Successfully submitted the daily limit update request.

- object
  - `data` object, required
    - `requestedOnchainDailyLimit` integer, required — The daily limit value that was requested to be set.

## Other responses

- `400` — Bad request - invalid signature.
- `401` — Unauthorized - invalid or missing authentication token.
- `404` — Safe account or token not found for the user.
- `422` — Unprocessable Entity - validation errors in request body.
- `500` — Internal server error.

---

[API](https://skmtc.net/gnosispay/apis/gnosispay-api.md) · [All operations](https://skmtc.net/gnosispay/apis/gnosispay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gnosispay/gnosispay-api/revisions/e0a09962c187/schema)
