Skip to main content
GET
/
projects
/
{project_id}
/
sections
Get Project Sections
curl --request GET \
  --url https://api.everhour.com/projects/{project_id}/sections \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": 1234,
    "name": "Section Name",
    "project": "ev:1234567890",
    "position": 1,
    "status": "open"
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

Project ID

Example:

"ev:1234567789001"

Response

OK

id
number
required
Example:

1234

name
string
required
Example:

"Section Name"

project
string
required
Example:

"ev:1234567890"

position
number
required
Example:

1

status
enum<string>
Available options:
open,
archived
Example:

"open"