API
Jira users who have access to Atlas CRM have access to the Atlas CRM API. You can find the detailed API documentation in Jira in the Atlas CRM menu. Please go here to find template information and exact endpoint urls.

You will need the unique ID's of the fields that are present in your templates to create and update companies/contacts/sales. You can find this information by clicking on 'template information'.

The API uses pagination to limit the response size for resources that return a potentially large collection of items. The API will return an
items
array wrapped in a JSON object with paging metadata. For example:{
"items": [...],
"total": 10,
"_links": {
"self": {
"href": "/jira/rest/atlascrm/api/1.0/workspaces/CRM/entities?cursor=zxcxz"
},
"next": {
"href": "/jira/rest/atlascrm/api/1.0/workspaces/CRM/entities?cursor=fdsfh535sfdsfd"
}
}
}
items
- the list of items.total
- total number of hits.links
- relevant links, including a self reference under theself
key and optionally anext
key. If there is anext
field it is the url to the next page.
If you want to get 10 more items you can call the url found in
next
and from that response you can call next
again. When there are no more items there won't be any next
key in the JSON object.get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities
Retrieve entities
post
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities
Create a new entity
get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}
Find entity by ID
put
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}
Update existing entity
delete
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}
Delete an existing entity
get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/template/{entity-type}
Retrieve template information by entity type
get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/field/{field-id}
Find field information by ID
post
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/issues
Link Jira issues
delete
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/issues
Unlink Jira issues
get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/links
Retrieve existing links
post
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/links
Create a new link
get
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/links/{other-entity-id}
Retrieve link information
put
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/links/{other-entity-id}
Update link information
delete
https://myjira.com
/rest/atlascrm/api/1.0/workspaces/CRM/entities/{entity-id}/links/{other-entity-id}
Delete a link
Last modified 2yr ago