Back to Collection Items
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
sbResponseBody.i = CkStringBuilder::ckCreate()
If sbResponseBody.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success = CkHttp::ckQuickGetSb(http,"https://your-domain.atlassian.net/wiki/rest/atlassian-connect/1/app/module/dynamic",sbResponseBody)
If success = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkStringBuilder::ckDispose(sbResponseBody)
ProcedureReturn
EndIf
Debug "Response status code = " + Str(CkHttp::ckLastStatus(http))
Debug CkStringBuilder::ckGetAsString(sbResponseBody)
CkHttp::ckDispose(http)
CkStringBuilder::ckDispose(sbResponseBody)
ProcedureReturn
EndProcedure
Curl Command
curl -X GET
https://your-domain.atlassian.net/wiki/rest/atlassian-connect/1/app/module/dynamic
Postman Collection Item JSON
{
"name": "Get modules",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/atlassian-connect/1/app/module/dynamic",
"host": [
"{{baseUrl}}"
],
"path": [
"atlassian-connect",
"1",
"app",
"module",
"dynamic"
]
},
"description": "Returns all modules registered dynamically by the calling app.\n\n**[Permissions](#permissions) required:** Only Connect apps can make this request."
},
"response": [
{
"name": "Returned if the request is successful.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/atlassian-connect/1/app/module/dynamic",
"host": [
"{{baseUrl}}"
],
"path": [
"atlassian-connect",
"1",
"app",
"module",
"dynamic"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "*/*"
}
],
"cookie": [
],
"body": ""
},
{
"name": "Returned if the call is not from a Connect app.",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/atlassian-connect/1/app/module/dynamic",
"host": [
"{{baseUrl}}"
],
"path": [
"atlassian-connect",
"1",
"app",
"module",
"dynamic"
]
}
},
"status": "Unauthorized",
"code": 401,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "*/*"
}
],
"cookie": [
],
"body": ""
}
]
}