Create a project monthly budget other item
curl --request POST \
--url https://www.ruddr.io/api/workspace/project-monthly-budget-other-items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fee": 123,
"projectId": "<string>",
"invoiceItemId": "<string>",
"description": "<string>"
}
'import requests
url = "https://www.ruddr.io/api/workspace/project-monthly-budget-other-items"
payload = {
"fee": 123,
"projectId": "<string>",
"invoiceItemId": "<string>",
"description": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
fee: 123,
projectId: '<string>',
invoiceItemId: '<string>',
description: '<string>'
})
};
fetch('https://www.ruddr.io/api/workspace/project-monthly-budget-other-items', 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://www.ruddr.io/api/workspace/project-monthly-budget-other-items",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'fee' => 123,
'projectId' => '<string>',
'invoiceItemId' => '<string>',
'description' => '<string>'
]),
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://www.ruddr.io/api/workspace/project-monthly-budget-other-items"
payload := strings.NewReader("{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://www.ruddr.io/api/workspace/project-monthly-budget-other-items")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.ruddr.io/api/workspace/project-monthly-budget-other-items")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "f29c3d71-8a45-4b0e-96e1-d5b7a2c84f03",
"fee": 3200,
"description": "Monthly software license allocation",
"createdAt": "2026-02-10T14:25:33.718Z",
"project": {
"id": "71e4b903-2c68-4f1a-a5d9-b0f37e8c2d16",
"name": "Mobile App Development",
"client": {
"id": "9a3f6c12-e758-40b4-d2a1-c8e5b7f09d34",
"name": "Globex Industries"
}
},
"invoiceItem": {
"id": "e7b21c84-3f09-4a6d-815e-d9c4f0a72b53",
"name": "Software Licenses"
}
}Project Monthly Budget Other Items
Create a project monthly budget other item
POST
/
project-monthly-budget-other-items
Create a project monthly budget other item
curl --request POST \
--url https://www.ruddr.io/api/workspace/project-monthly-budget-other-items \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fee": 123,
"projectId": "<string>",
"invoiceItemId": "<string>",
"description": "<string>"
}
'import requests
url = "https://www.ruddr.io/api/workspace/project-monthly-budget-other-items"
payload = {
"fee": 123,
"projectId": "<string>",
"invoiceItemId": "<string>",
"description": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
fee: 123,
projectId: '<string>',
invoiceItemId: '<string>',
description: '<string>'
})
};
fetch('https://www.ruddr.io/api/workspace/project-monthly-budget-other-items', 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://www.ruddr.io/api/workspace/project-monthly-budget-other-items",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'fee' => 123,
'projectId' => '<string>',
'invoiceItemId' => '<string>',
'description' => '<string>'
]),
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://www.ruddr.io/api/workspace/project-monthly-budget-other-items"
payload := strings.NewReader("{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://www.ruddr.io/api/workspace/project-monthly-budget-other-items")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://www.ruddr.io/api/workspace/project-monthly-budget-other-items")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"fee\": 123,\n \"projectId\": \"<string>\",\n \"invoiceItemId\": \"<string>\",\n \"description\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "f29c3d71-8a45-4b0e-96e1-d5b7a2c84f03",
"fee": 3200,
"description": "Monthly software license allocation",
"createdAt": "2026-02-10T14:25:33.718Z",
"project": {
"id": "71e4b903-2c68-4f1a-a5d9-b0f37e8c2d16",
"name": "Mobile App Development",
"client": {
"id": "9a3f6c12-e758-40b4-d2a1-c8e5b7f09d34",
"name": "Globex Industries"
}
},
"invoiceItem": {
"id": "e7b21c84-3f09-4a6d-815e-d9c4f0a72b53",
"name": "Software Licenses"
}
}The monthly budget for a miscellaneous invoice item on a project. Only available for billable projects using a monthly budget and the monthly budget mode is “detailed”.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The total amount of the item.
The ID (uuid) of the project this item belongs to.
The ID (uuid) of the invoice item to associate with this budget line.
A description of the item being charged. Maximum 255 characters.
Response
200
The unique identifier for the object.
The total amount of the item.
A description of the item being charged.
The timestamp when the object was created.
The project this item belongs to.
Show child attributes
Show child attributes
The invoice item associated with this budget line.
Show child attributes
Show child attributes
⌘I