Skip to main content
POST
/
reports
Create a report
curl --request POST \
  --url https://app.gomangrove.com/api/v1/reports \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "report": {
    "project_id": 123,
    "quantification_methodology_id": 1,
    "name": "Q1 2025 Carbon Report",
    "batch_ids": [
      "bat_abc123def456"
    ]
  }
}
'
{
  "id": "rpt_abc123def456",
  "name": "Q1 2025 Carbon Report",
  "report_type": "quarterly",
  "status": "draft",
  "project_id": 123,
  "created_at": "2025-01-15T10:00:00.000Z",
  "updated_at": "2025-01-15T10:00:00.000Z",
  "inclusions": [],
  "allocation": null
}

Authorizations

Authorization
string
header
required

Body

application/json
report
object

Response

201

id
string
name
string
report_type
string
status
string
project_id
integer
created_at
string<date-time>
updated_at
string<date-time>
inclusions
object[]
allocation
object