C / Anypoint Platform APIs / Get all assets for organization shared with me
Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject queryParams;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
queryParams = CkJsonObject_Create();
CkJsonObject_UpdateString(queryParams,"search","");
CkJsonObject_UpdateString(queryParams,"types","api-group");
CkJsonObject_UpdateString(queryParams,"types","connector");
CkJsonObject_UpdateString(queryParams,"types","custom");
CkJsonObject_UpdateString(queryParams,"types","example");
CkJsonObject_UpdateString(queryParams,"types","extension");
CkJsonObject_UpdateString(queryParams,"types","http-api");
CkJsonObject_UpdateString(queryParams,"types","policy");
CkJsonObject_UpdateString(queryParams,"types","raml-fragment");
CkJsonObject_UpdateString(queryParams,"types","rest-api");
CkJsonObject_UpdateString(queryParams,"types","soap-api");
CkJsonObject_UpdateString(queryParams,"types","template");
CkJsonObject_UpdateString(queryParams,"domain","");
CkJsonObject_UpdateString(queryParams,"organizationId","{{mulesoft_org_id}}");
CkJsonObject_UpdateString(queryParams,"masterOrganizationId","");
CkJsonObject_UpdateInt(queryParams,"offset",0);
CkJsonObject_UpdateInt(queryParams,"limit",20);
CkJsonObject_UpdateString(queryParams,"sharedWithMe","true");
CkJsonObject_UpdateString(queryParams,"includeSnapshots","true");
// Adds the "Authorization: Bearer {{token}}" header.
CkHttp_putAuthToken(http,"{{token}}");
resp = CkHttp_QuickRequestParams(http,"GET","https://domain.com/exchange/api/v2/assets",queryParams);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(queryParams);
}
Curl Command
curl -G -d "search="
-d "types=api-group"
-d "types=connector"
-d "types=custom"
-d "types=example"
-d "types=extension"
-d "types=http-api"
-d "types=policy"
-d "types=raml-fragment"
-d "types=rest-api"
-d "types=soap-api"
-d "types=template"
-d "domain="
-d "organizationId=%7B%7Bmulesoft_org_id%7D%7D"
-d "masterOrganizationId="
-d "offset=0"
-d "limit=20"
-d "sharedWithMe=true"
-d "includeSnapshots=true"
-H "Authorization: Bearer {{token}}"
https://domain.com/exchange/api/v2/assets
Postman Collection Item JSON
{
"name": "Get all assets for organization shared with me",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/exchange/api/v2/assets?search=&types=api-group&types=connector&types=custom&types=example&types=extension&types=http-api&types=policy&types=raml-fragment&types=rest-api&types=soap-api&types=template&domain=&organizationId={{mulesoft_org_id}}&masterOrganizationId=&offset=0&limit=20&sharedWithMe=true&includeSnapshots=true",
"host": [
"{{url}}"
],
"path": [
"exchange",
"api",
"v2",
"assets"
],
"query": [
{
"key": "search",
"value": ""
},
{
"key": "types",
"value": "api-group"
},
{
"key": "types",
"value": "connector"
},
{
"key": "types",
"value": "custom"
},
{
"key": "types",
"value": "example"
},
{
"key": "types",
"value": "extension"
},
{
"key": "types",
"value": "http-api"
},
{
"key": "types",
"value": "policy"
},
{
"key": "types",
"value": "raml-fragment"
},
{
"key": "types",
"value": "rest-api"
},
{
"key": "types",
"value": "soap-api"
},
{
"key": "types",
"value": "template"
},
{
"key": "domain",
"value": ""
},
{
"key": "organizationId",
"value": "{{mulesoft_org_id}}"
},
{
"key": "masterOrganizationId",
"value": ""
},
{
"key": "offset",
"value": "0"
},
{
"key": "limit",
"value": "20"
},
{
"key": "sharedWithMe",
"value": "true"
},
{
"key": "includeSnapshots",
"value": "true"
}
]
}
},
"response": [
]
}