This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

IDM Rest Driver Publisher Channel Query

Hi All,

Quick question which I’m hoping you can answer. If I was to use a NetIQ REST driver to allow other teams to create groups into our vault, do we have any control over the response returned?

I can create a group without any issue, but the standard response is;

 

HTTP/1.1 201 Created Date: Thu, 29 Aug 2019 00:52:29 GMT Content-Type: application/json Transfer-Encoding: chunked

 

Is it possible somehow to extend that to respond with the status above, but also;

 

 

{ "group": { "CN": "GroupCreated", "Owner": "GroupOwner", "OtherStuff": "You get the picture...." } }

 

 

?

Parents
  • 0  

    REST driver it is just REST client.

    Response supposed to be generated by the server.

    What kind of response (status) did you receive when you execute a similar request from another  REST client/browser?

Reply
  • 0  

    REST driver it is just REST client.

    Response supposed to be generated by the server.

    What kind of response (status) did you receive when you execute a similar request from another  REST client/browser?

Children
  • 0 in reply to   

    Hi,

    I obviously didn't make myself clear....apologies.

    Using your terminology, in this instance the Rest Driver is the "server" and we wish to expose this service to others (clients) so we can streamline certain tasks such as group creation in our Identity Vault.

    As an example, the clients will HTTP POST to the exposed driver address / port, https://idvault:port/Group to create a group.

    This works fine, as per the NetIQ documentation on the Rest Driver publisher channel functionality. The default response when a group is created is only the http response code as noted.

    Ideally, I'd like to respond with further information as well, and my question is how can I respond with further information?