Skip to main content
PUT
/
api
/
v1
/
auth
/
pricing
/
profiles
/
{id}
Update pricing profile (admin)
curl --request PUT \
  --url https://crypto.westminister.tech/api/v1/auth/pricing/profiles/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "is_active": true,
  "name": "<string>",
  "flow_type": "<string>",
  "asset": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Body

application/json
is_active
boolean
required
name
string
flow_type
string
asset
string

Response

200

OK