SoftSolzSoftSolz
HomeAPI GuideAPI ReferenceWidget Tester
tasks

Create a category and set the grading scheme its tasks inherit.

Create a category and set the grading scheme its tasks inherit.

POSThttps://app.softsolz.uk/api/v1/services/tasks/categories

Recent Requests

Log in to see full request history
TimeStatusUser Agent
Make a request to see history.

Headers

Authorizationstringrequired

Bearer token: `Bearer sk_live_...` (or `sk_test_...` for sandbox). A login token will not work here.

Idempotency-Keystring

Optional idempotency key for safe retries.

Body Params

namestring

Category name.

colourstring

Token name used to tint it.

sort_orderinteger

Display order.

grading_schemestring

Default scheme.

pass_marknumber

Percentage threshold for pass_fail.

letter_bandsarray of objects

Bands for the letter scheme.

reminder_leadarray of strings

Reminder leads.

Response

Response Body

idintegerCategory id.
namestringWhat this category is called.
colourstring | nullToken name used to tint the category.
sort_orderintegerDisplay order.
grading_schemestringDefault scheme for tasks in this category.
pass_marknumber | nullThreshold for pass_fail, as a percentage.
letter_bandsarray of objectsBands for the letter scheme: { label, min_percent }, highest first.
reminder_leadarray of stringsHow far ahead to remind, as a list. Overrides the workspace default.
task_countintegerTasks filed under this category.

Request

import { SoftSolz } from '@softsolz/sdk';
const client = new SoftSolz({ apiKey: process.env.SOFTSOLZ_API_KEY });
const result = await client.tasks.createCategory({});
console.log(result);

Credentials

Sent as a Bearer token. Stored only in your browser.

Response · 201

{
"data": {
"id": 0,
"name": "string",
"colour": "string",
"sort_order": 0,
"grading_scheme": "string",
"pass_mark": "string",
"letter_bands": [],
"reminder_lead": [],
"task_count": 0
}
}