Use this tag for questions related to MuleSoft's Anypoint Platform cloud products.
Questions tagged [anypoint-platform]
117 questions
3
votes
1 answer
How can merge branch into master in MuleSoft (Anypoint design center)
We have created multiple RAML file in Design Center (Anypoint Platform - Mulesoft). We are working in team so multiple users can edit that RAML file by creating separate branch. Now I want to merge those branches into master branch. How can I do…

MohammedAshrafali
- 499
- 3
- 8
- 22
2
votes
1 answer
How to deploy Mule application jar file in Runtime Fabric with Anypoint Runtime Manager REST API without going though Anypoint Exchange
I want deploy a jar file which is availble for me in my pc to RTF Mule server managed by AKS.I want use ARM rest api.
curl --location --request POST 'https://anypoint.mulesoft.com/hybrid/api/v1/applications' \
--header 'x-anypnt-env-id: e21c3d'…

kushma gonna
- 236
- 3
- 19
2
votes
1 answer
Mule 4 - Anypoint MQ Retry Exhausted Exception and dead letter queue
I started using Anypoint MQ Subscribe with Max Redelivery Countset to 2.
Application should throw ANYPOINT-MQ:RETRY_EXHAUSTED exception after 2 failed deliveries, but the message was returned back to main queue and picked up again in the next…

user1228
- 151
- 6
1
vote
1 answer
Make HTTPS GET request using http connector in Mule with SSL certificates
I have .crt and privatekey.pem keys which can be used for making HTTPS GET API request.
We can't use these certificates directly in mulesoft for making https API requests.
As far I know it supports Trust store configuration and Key store…

dubru
- 142
- 10
1
vote
1 answer
Adding narrative documentation to OpenAPI specification
As a best practice, I wanted to incorporate some important and critical helpful content into my API specifications
FAQs related to APIs
Code template or cookbook to help the consumer to see the code sample to call the API
API subscription…

Kundan Saini
- 87
- 2
- 6
- 15
1
vote
1 answer
Unable to deploy mule application on on prem
I am trying to deploy an Mule application to On prem using Azure pipeline, below is the Azure-pipelines.yml
trigger:
batch: true
branches:
include:
- develop
paths:
exclude:
-…

Niladri Dey
- 35
- 1
1
vote
1 answer
How to remove the duplicate elements in arrays of JSON file using Datawave transformations?
Here I want to remove duplicate accounts with the help of account_id for all accounts in this JSON file. There are 12 accounts in this JSON file need to duplicate accounts to make them unique. someone, Please help me resolve this.
Here total 12…

Buddy
- 11
- 3
1
vote
0 answers
What scopes/roles are required to add to use platform alerts API using ConnectedApp in Anypoint Platform
I have provided the Manage Alerts and Read Alerts scopes to connectedApp to access platform apis. When trying to create alert using ConnectedApp credentials in platform APIs throwing an 403 error (Access Issue).
If I had given scope OrgAdmin and…

Gopi
- 105
- 1
- 7
- 24
1
vote
2 answers
How to convert string to json object using DataWeave
How do I convert below input string (which will be retrieved from config.yaml properties file) to required json object using Dataweave?
Input:
"ABC:123,DEF:456,GHI:789"
Required Output:
{
"ABC":"123",
"DEF":"456",
"GHI":"789"
}

Mule-Newbie
- 75
- 7
1
vote
0 answers
Creating ruleset for API Governance - Anypoint Platform
/example:
/{uriParams}:
get:
is: [defaultResponses, commonHeaders]
uriParameters:
uriParams:
description: Example description uriParams
body:
application/json:
…

Anonim
- 81
- 5
1
vote
1 answer
How to customise an error message generated by the Anypoint API manager standard policy?
There is an API running on the CloudHub (Mule 4.4) and protected with the standard SLA Rate Limit policy.
We have a requirement to provide a custom error message body instead of the default one generated by the policy when authentication fails.
The…

spoonboy
- 2,570
- 5
- 32
- 56
1
vote
3 answers
How to turn a string which should be split on the an turned into an array of objects in mulesoft
I am trying to turn a string which should be split on the basis of space and turned into an array of objects.
Please help me how can I form it.
Input
field: YYC:16:26 YVR:16:03 YEG:13:43
Output Expected
"details" : [
{
"field" : "YYC", …

Auro
- 23
- 7
1
vote
2 answers
Mulesoft condense array of nested objects to single array of objects
I have a dataset that is an array of objects, and each object is another object with an array inside of it. I am trying to flatten everything to a single array of the innermost objects, without the keys of the middle layer objects. I have tried to…

anonMule
- 91
- 2
1
vote
2 answers
How to sort by Datetime in Mulesoft Dataweave?
How do I sort and array of json that needs sorting by date using Dataweave 2
{
"things": [
{
"datetime": "2020-11-07T16:11:52.866Z",
"name": "foo"
},
{
"datetime": "2020-11-07T16:11:39.971Z",
"name": "bar"
},
{
…

blank
- 17,852
- 20
- 105
- 159
1
vote
1 answer
How to Publish Mule Application to Exchange as Connector in Mule 4
I need to publish mule application to exchange as connector in mule 4.
Could anyone please let me know the process.

Hemila Richard
- 21
- 1