# Object ``` { "group": {string}, "user": {string}, "name": {string}, "content": {string} } ``` # API Endpoints #### `/saved_roll/` - **GET**: List all saved rolls. - **POST**: Idempotent create-or-update operation. #### `/saved_roll/?{query}/` - **GET**: List all saved rolls that match the `{query}`. Available query params (may be joined with `&`): - `group=` - `user=` - `name=` #### `/saved_roll/{pk}/` - **GET**: Describe the saved roll with primary key `{pk}`. - **DELETE**: Delete the saved roll with primary key `{pk}`. #### `/saved_roll/{pk}/calc/` - **GET**: Calculate the saved roll with primary key `{pk}`.
Object
API Endpoints
/saved_roll/GET:
List all saved rolls.
POST:
Idempotent create-or-update operation.
/saved_roll/?{query}/List all saved rolls that match the
{query}.Available query params (may be joined with
&):group=user=name=/saved_roll/{pk}/GET:
Describe the saved roll with primary key
{pk}.DELETE:
Delete the saved roll with primary key
{pk}./saved_roll/{pk}/calc/Calculate the saved roll with primary key
{pk}.