Hi @Angélica Luz ,
Any idea yet when the full documentation is going to be back online?
We're just starting with Insight and really need it...
Hi @Wim Abts
Thanks for reaching out to Community!
There are no updates regarding the documentation.
We found a documentation that is related to the Insight app:
- Insight for Jira Data Center and Server
Once we have updates, we will post here.
Kind regards,
Angélica
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Микола Хуткий and @Pekao S_A_,
Welcome to the Atlassian Community!
We are checking internally if there are any updates about when the documentation will be back online.
For now, only the API documentation for Insight Cloud is available:
Once we have an update from the Server documentation, we will share it here.
Kind regards,
Angélica
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
All the info about rest api calls and groovy examples are missing ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi every one,
I found this info I hope it is useful.
Insight REST-API
This is the reference document for the REST-API and resources provided by Insight. The REST-APIs are for developers who want to integrate Insight with other standalone or web applications, and administrators who want to script interactions with Insight on the JIRA server. Because the REST API is based on open standards, you can use any web development language to access the API.
Structure of the REST URIs
Insight REST-API provides access to resources (data entities) via URI paths. To use a REST API, your application will make an HTTP request and parse the response. The Insight REST API uses JSON as its communication format, and the standard HTTP methods like GET, PUT, POST and DELETE (see API descriptions below for which methods are available for each resource). URIs for Insight REST API resource have the following structure:
http://host:port/context/rest/insight/api-version/resource-name
The API version is 1.0
Authentication
Any authentication that works against JIRA will work against the Insight REST API.
Content Type
Don't forget to use "Content-Type: application/json" in http header when sending data to the Insight REST-API's.
The api calls: https://insight-javadoc.riada.io/insight-javadoc-8.6/insight-rest/#objectattribute
Jira api with Insight
Create Issue
URI: /rest/api/2/issue
As you can see below, you will have to use the key attribute to define the Insight object keys, when creating Issues with Insight custom field values.
{
"fields": {
"project":
{
"key": "TEST"
},
"summary": "REST ye merry gentlemen.",
"description": "Creating of an issue using project keys and issue type names using the REST API",
"issuetype": {
"name": "Task"
},
"customfield_10100" : [{"key" : "TEST-1"}],
"customfield_10200" : [{"key" : "TEST-1"}, {"key" : "TEST-2"}]
}
}
Update issue
URI: /rest/api/2/issue/[issueKey]
This is an example of setting an Insight object to a specific Insight custom field. Use the attribute set to define the Insight object keys
{
"update" : {
"customfield_10200" : [{"set": [{"key" : "TEST-1"}]}]
}
}
This is an example of adding an Insight object to the existing connected ones. Use the attribute add to define the Insight object keys
{
"update" : {
"customfield_10200" : [{"add": [{"key" : "TEST-2"},{"key" : "TEST-3"}]}]
}
}
This is an example of removing an Insight object from the existing connected ones. Use the attribute remove to define the Insight object keys
{
"update" : {
"customfield_10200" : [{"remove": [{"key" : "TEST-2"}]}]
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It looks like Atlassian have dropped the old mindville servers from when they acquired Insight, and not relocated the documentation in a visible place yet.
We'll need Atlassian to get the servers back up, or give us a new place they've moved the docs to.
I'll go ask :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- @Микола Хуткий Any new information about this ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think @Angélica Luz beat us to it as usual :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.