curl --request POST \
--url https://api.zivio.net/api/v4/eois/{eoi_id}/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'zivio-tenant-id: <api-key>' \
--data '
{
"name": "New Record"
}
'{
"id": 101,
"subject": "Example subject",
"content": "Example content",
"notable_type": "Project",
"notable_id": 501,
"user_id": 501,
"visibility_types": null,
"author": null,
"created_at": "2024-01-16T10:30:00+00:00",
"updated_at": "2024-01-16T10:30:00+00:00"
}Notes
Create an EOI Note
POST
/
eois
/
{eoi_id}
/
notes
curl --request POST \
--url https://api.zivio.net/api/v4/eois/{eoi_id}/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'zivio-tenant-id: <api-key>' \
--data '
{
"name": "New Record"
}
'{
"id": 101,
"subject": "Example subject",
"content": "Example content",
"notable_type": "Project",
"notable_id": 501,
"user_id": 501,
"visibility_types": null,
"author": null,
"created_at": "2024-01-16T10:30:00+00:00",
"updated_at": "2024-01-16T10:30:00+00:00"
}Authorizations
OAuth 2.0 client credentials. The access token from POST /oauth/token is sent as a bearer token. Request only the scopes you need.
Your Zivio organisation identifier. The regional API endpoints serve every Zivio organisation, so each request must identify yours.
Path Parameters
Eoi ID
Body
application/json
Show child attributes
Show child attributes

