Get transaction data for setting daily limit
GET/api/v1/accounts/onchain-daily-limit/transaction-data
Returns the transaction data that needs to be signed by the user's wallet to set a new onchain daily limit. This endpoint is used as part of a three-step process:
- Call this endpoint to get the transaction data
- Sign the transaction data with the user's wallet
- Submit the signature to the PUT
/api/v1/accounts/onchain-daily-limit
endpoint
Note: The onchainDailyLimit must be an integer value between 1 and 5000.
Request
Responses
- 200
- 401
- 404
- 422
- 500
Successfully retrieved transaction data for signing.
Unauthorized - invalid or missing authentication token.
Safe account or token not found for the user.
Unprocessable Entity - validation errors in query parameters.
Internal server error.