Skip to main content
PATCH
/
{team_id}
/
time
/
tracking
/
config
Update workspace rate config
curl --request PATCH \
  --url https://api.superthread.com/v1/{team_id}/time/tracking/config \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "default_rate_cents": 123,
  "billable_by_default": true,
  "privacy_setting": "visible_to_admins"
}
'
import requests

url = "https://api.superthread.com/v1/{team_id}/time/tracking/config"

payload = {
"default_rate_cents": 123,
"billable_by_default": True,
"privacy_setting": "visible_to_admins"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.patch(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
default_rate_cents: 123,
billable_by_default: true,
privacy_setting: 'visible_to_admins'
})
};

fetch('https://api.superthread.com/v1/{team_id}/time/tracking/config', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.superthread.com/v1/{team_id}/time/tracking/config",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'default_rate_cents' => 123,
'billable_by_default' => true,
'privacy_setting' => 'visible_to_admins'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.superthread.com/v1/{team_id}/time/tracking/config"

payload := strings.NewReader("{\n \"default_rate_cents\": 123,\n \"billable_by_default\": true,\n \"privacy_setting\": \"visible_to_admins\"\n}")

req, _ := http.NewRequest("PATCH", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.patch("https://api.superthread.com/v1/{team_id}/time/tracking/config")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"default_rate_cents\": 123,\n \"billable_by_default\": true,\n \"privacy_setting\": \"visible_to_admins\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.superthread.com/v1/{team_id}/time/tracking/config")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"default_rate_cents\": 123,\n \"billable_by_default\": true,\n \"privacy_setting\": \"visible_to_admins\"\n}"

response = http.request(request)
puts response.read_body
{
  "rate_config": {
    "team_id": "tDsu0j19",
    "default_rate_cents": 10000,
    "billable_by_default": true,
    "privacy_setting": "visible_to_admins"
  }
}
{
"error": {
"id": "err5f744ab",
"code": 403,
"sec": "SEC:000-00014",
"message": "You do not have access to this resource",
"date": 1608742037016
}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

team_id
string
required

Team ID is an alphanumerical string that identifies a Team. This is externally referred to as a "Workspace".

Body

application/json
default_rate_cents
integer | null
billable_by_default
boolean | null
privacy_setting
enum<string>

Controls who can see other users' time data within the workspace.

  • hidden: only the entry's author can see their own entries; no aggregates exposed.
  • aggregates_only: members see aggregated totals across all users, but not individual entries.
  • visible_to_admins: non-admins only see their own entries; admins see everyone's entries and aggregates.
  • visible: every member sees both aggregates and individual entries.
Available options:
hidden,
aggregates_only,
visible_to_admins,
visible
Example:

"visible_to_admins"

Response

Updated workspace rate config

rate_config
object