Call REST API post method

0
Hello there, I am trying to use call rest API (Post) with this body {                 "token": "string",                 "data": {                     "question": "string",                     "answer": "string"                 }             } How can i do that 
asked
1 answers
1

Hey Loai,

You first have to use an export mapping and then using a microflow first using export mapping activity you have to export the data, then apply a REST call activity,

Then select POST method and give it a URL location,

 

If there's an authentication required,  give it the authentication information and give it custom headers and the Payload,

 

This way you'll be able to make the POST call.

 

Hope it helps !

 

 

answered