Organi Jira API (1.5.27)

Download OpenAPI specification:

API for interacting with Jira issues and worklogs, providing estimates, detailed issue information, and worklog searching capabilities.

jira

Operations related to Jira issues and worklogs.

Get Jira issue estimates

Retrieves the time estimates (original, remaining, spent) for a specific Jira issue.

path Parameters
id
required
string

The Jira issue key (e.g., PROJ-123).

Responses

Response samples

Content type
application/json
{
  • "originalEstimate": "string",
  • "remainingEstimate": "string",
  • "timeSpent": "string"
}

Get Jira issue estimates (v1)

Versioned endpoint to retrieve time estimates for a specific Jira issue.

path Parameters
id
required
string

The Jira issue key.

Responses

Get Jira issue estimates (v2)

Versioned endpoint to retrieve time estimates for a specific Jira issue.

path Parameters
id
required
string

The Jira issue key.

Responses

Get Jira issue info

Retrieves detailed information about a Jira issue, including status, project, and custom fields.

path Parameters
id
required
string

The Jira issue key.

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "key": "string",
  • "url": "string",
  • "summary": "string",
  • "client": {
    },
  • "project": {
    },
  • "organiProject": "string",
  • "issueType": {
    },
  • "status": {
    },
  • "fixVersions": [
    ],
  • "billable": true,
  • "location": {
    },
  • "invoiceAs": {
    },
  • "parentInvoiceAs": {
    },
  • "parentOrganiProject": "string",
  • "approvedBy": {
    },
  • "approveDate": "string",
  • "finRemark": "string",
  • "estimateCR": "string",
  • "estimateDevelopment": "string",
  • "etc": 0,
  • "timeSpentSeconds": 0,
  • "urgencyCall": {
    },
  • "resolutionDate": "2019-08-24T14:15:22Z",
  • "resolution": {
    },
  • "components": [
    ],
  • "jiraBillable": "string",
  • "parentId": "string",
  • "parentKey": "string",
  • "parentIssueTypeId": "string",
  • "parentIssueType": "string",
  • "parentIssueSummary": "string",
  • "parentIssueTypeIconUrl": "string",
  • "jiraServerId": "string",
  • "restrictions": [
    ]
}

Get Jira issue info (v1)

Versioned endpoint to retrieve detailed information about a Jira issue.

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "key": "string",
  • "url": "string",
  • "summary": "string",
  • "client": {
    },
  • "project": {
    },
  • "organiProject": "string",
  • "issueType": {
    },
  • "status": {
    },
  • "fixVersions": [
    ],
  • "billable": true,
  • "location": {
    },
  • "invoiceAs": {
    },
  • "parentInvoiceAs": {
    },
  • "parentOrganiProject": "string",
  • "approvedBy": {
    },
  • "approveDate": "string",
  • "finRemark": "string",
  • "estimateCR": "string",
  • "estimateDevelopment": "string",
  • "etc": 0,
  • "timeSpentSeconds": 0,
  • "urgencyCall": {
    },
  • "resolutionDate": "2019-08-24T14:15:22Z",
  • "resolution": {
    },
  • "components": [
    ],
  • "jiraBillable": "string",
  • "parentId": "string",
  • "parentKey": "string",
  • "parentIssueTypeId": "string",
  • "parentIssueType": "string",
  • "parentIssueSummary": "string",
  • "parentIssueTypeIconUrl": "string",
  • "jiraServerId": "string",
  • "restrictions": [
    ]
}

Get Jira issue info (v2)

Versioned endpoint to retrieve detailed information about a Jira issue.

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "key": "string",
  • "url": "string",
  • "summary": "string",
  • "client": {
    },
  • "project": {
    },
  • "organiProject": "string",
  • "issueType": {
    },
  • "status": {
    },
  • "fixVersions": [
    ],
  • "billable": true,
  • "location": {
    },
  • "invoiceAs": {
    },
  • "parentInvoiceAs": {
    },
  • "parentOrganiProject": "string",
  • "approvedBy": {
    },
  • "approveDate": "string",
  • "finRemark": "string",
  • "estimateCR": "string",
  • "estimateDevelopment": "string",
  • "etc": 0,
  • "timeSpentSeconds": 0,
  • "urgencyCall": {
    },
  • "resolutionDate": "2019-08-24T14:15:22Z",
  • "resolution": {
    },
  • "components": [
    ],
  • "jiraBillable": "string",
  • "parentId": "string",
  • "parentKey": "string",
  • "parentIssueTypeId": "string",
  • "parentIssueType": "string",
  • "parentIssueSummary": "string",
  • "parentIssueTypeIconUrl": "string",
  • "jiraServerId": "string",
  • "restrictions": [
    ]
}

Get Jira worklog by ID

Retrieves a specific Jira worklog entry by its unique identifier.

path Parameters
id
required
number

The Jira worklog ID.

Responses

Response samples

Content type
application/json
{
  • "id": "string",
  • "issueId": 0,
  • "issueKey": "string",
  • "author": "string",
  • "comment": "string",
  • "time": 0,
  • "created": "2019-08-24T14:15:22Z",
  • "timeSpent": "string",
  • "worklogDate": "string",
  • "attributes": [
    ]
}