Skip to main content
POST
/
api
/
orgs
/
{id}
/
initiatives
/
{initiativeId}
/
projects
Add project to initiative
curl --request POST \
  --url https://atollhq.com/api/orgs/{id}/initiatives/{initiativeId}/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "goal_id": "<string>",
  "owner_id": "<string>",
  "status": "proposed",
  "target_date": "2023-12-25"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://bytestream.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

id identifier

initiativeId
string
required

initiativeId identifier

Body

application/json
title
string
description
string
goal_id
string
owner_id
string
status
enum<string>
Available options:
proposed,
active,
completed,
paused,
cancelled
target_date
string<date>

Response

Successful response

The response is of type object.