Skip to main content

invitations.list_mine

List the organization invitations waiting for an answer

Request
GET/api/v1/invitations
Scope required
organizations:read
Effect
Reads only. Safe to retry and safe for an agent to call unprompted.
Acts on
Acts on the account’s own job search.
MCP tool
invitations_list_mine
Environment
Live and sandbox alike.
Request body
JSON.

What it does

Returns the invitations addressed to this account that have not been accepted, declined or revoked, each with the organization, the role offered, who sent it and when it runs out. Answer one with `invitations.accept` or `invitations.decline`. Accepting as an applicant does not expose anything by itself — a board is only visible to the organization once `shares.create` is called for it.

Parameters

Parameters this endpoint accepts, where each one goes, and whether it is required
NameSent inRequirementAccepts
limitqueryOptionalinteger
cursorqueryOptionalstring

Response

data
array of object, required
expiresAt
string, required
id
string, required
invitedByDisplayName
string, required
organization
object, required
name
string, required
slug
string, required
type
one of: career_coach, bootcamp, college, trade_school, government, other, required
role
one of: owner, admin, coach, applicant, required
hasMore
boolean, required
nextCursor
string or null, required

Examples

One invitation from a college career centre

One invitation from a college career centre — request
curl -s https://www.jobapplicationtracking.com/api/v1/invitations \
  -H "Authorization: Bearer $JAT_KEY"
One invitation from a college career centre — response
{
  "data": [
    {
      "id": "inv_3f1b0c2e-6d5a-4f7b-9c8d-0a1b2c3d4e5f",
      "organization": {
        "slug": "northwind-careers",
        "name": "Northwind Careers",
        "type": "college"
      },
      "role": "applicant",
      "invitedByDisplayName": "Jordan Reyes",
      "expiresAt": "2026-03-01T00:00:00.000Z"
    }
  ],
  "hasMore": false,
  "nextCursor": null
}

Related operations