Skip to main content
PUT
/
issues
Create or update an issue
curl --request PUT \
  --url https://app.melodi.fyi/api/external/issues \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '
{
  "projectId": 123,
  "name": "<string>"
}
'
{
  "id": 123,
  "projectId": 123,
  "name": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

api-key
string
header
required

Your Melodi API key

Body

application/json
projectId
integer
required

ID of the project this issue belongs to

name
string
required

Name of the issue

Response

Issue successfully created or updated

id
integer<int32>
required

Unique identifier for the issue

projectId
integer
required

ID of the project this issue belongs to

name
string
required

Name of the issue

createdAt
string<date-time>
required
updatedAt
string<date-time>
required