Skip to main content
GET
/
projects
/
{project_id}
/
messages
Get messages by project
curl --request GET \
  --url https://api.projectcor.com/v1/projects/{project_id}/messages \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "message": "<string>",
    "attachments": [
      {
        "id": 123,
        "name": "<string>",
        "url": "<string>",
        "type": "<string>",
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

project_id
integer
required

Response

200 - application/json

List of messages

id
integer
message
string
attachments
object[]