API status

Fees Configurations

All fees configurations related paths.

post

Create a fee configuration

Creates a fee configuration for a fee collection.

account_idstring

required

Account unique identifier.

Format
uuid
fee_model_idstring

required

Fee model unique identifier.

Format
uuid

Responses

Request examples

{
  "fee_model_id": "1df86975-06f4-484d-935e-46b54bab2f6c",
  "account_id": "7524949b-31fd-497e-ad92-f52de45341d1"
}

Response examples

OK

{
  "created_at": "2021-07-21T14:10:00.00Z",
  "updated_at": "2021-07-21T14:10:00.00Z",
  "fee_model_id": "1df86975-06f4-484d-935e-46b54bab2f6c",
  "account_id": "7524949b-31fd-497e-ad92-f52de45341d1"
}
get

Get fee configuration

Retrieve the fee configuration for a specific account.

account_idstring

required

Account unique identifier.

Format
uuid

Responses

Response examples

OK

{
  "created_at": "2021-07-21T14:10:00.00Z",
  "updated_at": "2021-07-21T14:10:00.00Z",
  "fee_model_id": "1df86975-06f4-484d-935e-46b54bab2f6c",
  "account_id": "7524949b-31fd-497e-ad92-f52de45341d1"
}
patch

Update fee configuration

Update fee configuration

fee_model_idstring

required

Fee model unique identifier.

Format
uuid

Responses

Request examples

{
  "fee_model_id": "1df86975-06f4-484d-935e-46b54bab2f6c"
}

Response examples

OK

{
  "created_at": "2021-07-21T14:10:00.00Z",
  "updated_at": "2021-07-21T14:10:00.00Z",
  "fee_model_id": "1df86975-06f4-484d-935e-46b54bab2f6c",
  "account_id": "7524949b-31fd-497e-ad92-f52de45341d1"
}