How to add description of a sharedflow revision through postman request,How to save the description of a sharedflow through postman request

I was trying to update the revision of sharedflow through postman but it is giving some error.

Req : https://api.enterprise.apigee.com/v1/organizations/{org}/sharedflows/{name}/revisions/{rev}

Payload: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <SharedFlow revision="1" name="{name}"> <Description>This is my description</Description> </SharedFlow>

,

I was trying to save the description of a sharedflow through postman. But it is giving me error.

Request : https://api.enterprise.apigee.com/v1/organizations/{org}/sharedflows/{name}/revisions/{rev}

Request Body:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <SharedFlow revision="1" name="logtologgly-v2"> <Description>This is my description</Description> </SharedFlow>

Solved Solved
0 2 92
1 ACCEPTED SOLUTION

I believe you want SharedFlowBundle. Example:

<SharedFlowBundle revision="1" name="RefreshAccessToken">
  <ConfigurationVersion minorVersion="0" majorVersion="4"/>
  <Description>Here is my description...</Description>
  ...



View solution in original post

2 REPLIES 2

I believe you want SharedFlowBundle. Example:

<SharedFlowBundle revision="1" name="RefreshAccessToken">
  <ConfigurationVersion minorVersion="0" majorVersion="4"/>
  <Description>Here is my description...</Description>
  ...



@Dino-at-Google : Thanks!! It's working.. 🙂