curl --request POST \
--url https://developer-api.squads.so/api/v1/smart-accounts/{smart_account_address}/spending-limits \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-squads-network: <x-squads-network>' \
--data '
{
"amount": "<string>",
"token_address": "<string>",
"period": "ONE_TIME",
"transaction_signers": [
"<string>"
],
"spending_limit_signers": [
"<string>"
],
"destinations": [
"<string>"
],
"expiration": 123,
"fee_config": {
"currency": "<string>",
"payer_address": "<string>",
"self_managed_fees": false
}
}
'