What is multipart and callback response type?

How to configure these two in vConnect?

2 Likes

Hi @Lavy.Chaudhary

  1. MULTIPART:-
    Select this value to receive the response in multipart HTTP format. The multipart response
    combines different data sets into a single body. These data sets are separated by the boundary.
  2. Callback:-
    Select this option to enable the callback mechanism. When a client sends an API request with the
    callback mechanism, it sends a callback URL string with the request data.
    After the server receives the request, it instantly returns an acknowledgement to the client. After the actual
    response is received, the server sends an event-based notification to the callback URL so that it can return the
    response. The callback feature improves the API’s workflow.

Configuration in vConnect:-
Multipart:-

  1. Go to your middleware application.
  2. Click on vConnect module.
  3. Go to Services tab and click on ā€œAdd new Serviceā€.
  4. Under ā€œResponse typeā€ select ā€œMultipartā€.

Callback:-
For callback you can refer to below link:-

3 Likes