Returns all modules registered dynamically by the calling app.
Permissions required: Only Connect apps can make this request.
Forge and OAuth2 apps cannot access this REST resource.
Connect app scope required: NONE
This request has no parameters.
Returned if the request is successful.
1
2
3
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/atlassian-connect/1/app/module/dynamic' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"jiraEntityProperties": [
{
"keyConfigurations": [
{
"extractions": [
{
"objectName": "extension",
"type": "text",
"alias": "attachmentExtension"
}
],
"propertyKey": "attachment"
}
],
"entityType": "issue",
"name": {
"value": "Attachment Index Document"
},
"key": "dynamic-attachment-entity-property"
}
],
"jiraIssueFields": [
{
"description": {
"value": "A dynamically added single-select field"
},
"type": "single_select",
"extractions": [
{
"path": "category",
"type": "text",
"name": "categoryName"
}
],
"name": {
"value": "Dynamic single select"
},
"key": "dynamic-select-field"
}
]
}
Registers a list of modules.
Permissions required: Only Connect apps can make this request.
Forge and OAuth2 apps cannot access this REST resource.
Connect app scope required: NONE
array<ConnectModule>
RequiredReturned if the request is successful.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
curl --request POST \
--url 'https://your-domain.atlassian.net/rest/atlassian-connect/1/app/module/dynamic' \
--header 'Content-Type: application/json' \
--data '{
"jiraEntityProperties": [
{
"keyConfigurations": [
{
"extractions": [
{
"objectName": "extension",
"type": "text",
"alias": "attachmentExtension"
}
],
"propertyKey": "attachment"
}
],
"entityType": "issue",
"name": {
"value": "Attachment Index Document"
},
"key": "dynamic-attachment-entity-property"
}
],
"jiraIssueFields": [
{
"description": {
"value": "A dynamically added single-select field"
},
"type": "single_select",
"extractions": [
{
"path": "category",
"type": "text",
"name": "categoryName"
}
],
"name": {
"value": "Dynamic single select"
},
"key": "dynamic-select-field"
}
]
}'
Remove all or a list of modules registered by the calling app.
Permissions required: Only Connect apps can make this request.
Forge and OAuth2 apps cannot access this REST resource.
Connect app scope required: NONE
array<string>
Returned if the request is successful.
1
2
curl --request DELETE \
--url 'https://your-domain.atlassian.net/rest/atlassian-connect/1/app/module/dynamic'
Rate this page: