PUT
/
user
/
settings
Registration, Deposit and Fee Settings
curl --request PUT \
  --url https://staging-api.getpartna.com/v4/user/settings \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-api-user: <api-key>' \
  --data '{
  "autoMoveDeposit": false,
  "cryptoPaymentSource": "",
  "feeAmount": 0,
  "feeCurrency": "",
  "feeType": "",
  "registrationType": ""
}'
{
  "data": null,
  "message": "success"
}

Authorizations

x-api-key
string
header
required
x-api-user
string
header
required

Body

application/json
autoMoveDeposit
boolean

select true if all user's account deposits should be held in the user's main account; defaults to false

cryptoPaymentSource
enum<string>

select known if crypto wallets are to a user provided address; select unknown addresses generated by the service; defaults to known

Available options:
known,
unknown
feeAmount
number

required with feeCurrency and feeType

feeCurrency
enum<string>

required with feeAmount and feeType

Available options:
USD
feeType
enum<string>

required with feeCurrency and feeAmount

Available options:
fixed,
percentage
registrationType
enum<string>
Available options:
open,
closed

Response

put user settings ok

data
string
message
string