Skip to main content
POST
/
v1
/
projects
/
bulk
Bulk save projects
curl --request POST \
  --url https://api.nomi.tools/v1/projects/bulk \
  --header 'Accept: <accept>' \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "projectCategoryId": "<string>",
    "name": "<string>",
    "notes": "<string>",
    "hasPlan": true,
    "planIncome": 123,
    "planOutcome": 123
  }
]
'
{
  "ids": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Use HTTP Basic Authentication. Provide your email as login and PPT token as the password.

Headers

Accept
enum<string>
default:application/json
required
Available options:
application/json

Body

application/json
projectCategoryId
string | null

Identifier for the project category.

name
string

Name of the project.

notes
string | null

Additional notes about the project.

hasPlan
boolean

Indicates if the project has a plan.

planIncome
number<float> | null

Planned income for the project.

planOutcome
number<float> | null

Planned outcome for the project.

Response

Projects saved successfully

ids
string[]