Forge Dynamic Modules API for managing dynamic modules
Forge and OAuth2 apps cannot access this REST resource.
string
integer
string
RequiredList of dynamic modules
1
2
3
4
curl --request GET \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/installation/v1/dynamic/module' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'1
2
3
4
5
6
7
8
9
10
{
"result": [
{
"key": "<string>",
"type": "<string>",
"data": {}
}
],
"lastEvaluatedKey": "<string>"
}Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
Requiredobject
RequiredDynamic module updated successfully
1
2
3
4
5
6
7
8
9
10
curl --request PUT \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/installation/v1/dynamic/module' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{
"key": "<string>",
"type": "<string>",
"data": {}
}'1
2
3
4
5
{
"key": "<string>",
"type": "<string>",
"data": {}
}Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
Requiredstring
Requiredobject
RequiredDynamic module created successfully
1
2
3
4
5
6
7
8
9
10
curl --request POST \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/installation/v1/dynamic/module' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123' \
--header 'Content-Type: application/json' \
--data '{
"key": "<string>",
"type": "<string>",
"data": {}
}'1
2
3
4
5
{
"key": "<string>",
"type": "<string>",
"data": {}
}Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredDynamic module retrieved successfully
1
2
3
4
curl --request GET \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/installation/v1/dynamic/module/{key}' \
--header 'Accept: application/json' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'1
2
3
4
5
{
"key": "<string>",
"type": "<string>",
"data": {}
}Forge and OAuth2 apps cannot access this REST resource.
string
Requiredstring
RequiredDynamic module deleted successfully
1
2
3
curl --request DELETE \
--url '{FORGE_EGRESS_PROXY_URL}/atlassian/forge/installation/v1/dynamic/module/{key}' \
--header 'forge-proxy-authorization: Forge as=app,id=invocation-123'Rate this page: