Skip to content
Leadtime
English
Esc
navigateopen⌘Jpreview

List tasks linked to an object

GET/objects/{id}/tasks
Authorization
AuthorizationOAuth2 access token · headerrequired
Scopes:api:read
or
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
Responses
200
itemsTaskLinkedToObjectDto[]required
Show properties
Array of TaskLinkedToObjectDto
idstringrequired
shortNumbernumberrequired
titlestringrequired
401Unauthorized - Invalid or missing authentication token
403Forbidden - Insufficient API scopes or permissions
Request
curl -X GET "https://leadtime.app/api/public/objects/string/tasks" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Response
{
  "items": [
    {
      "id": "string",
      "shortNumber": 0,
      "title": "string"
    }
  ]
}