Question
How to execute get/post responses from ICaaS on 3rd party applications (e.g Postman)?
Answer
If you need to execute ICaaS application responses via 3rd party applications you should use the same text with one difference:
1. Route responses to the definition point and define its type:
2. Do the authentication by:
- in the response body by parameters: login and password. Use id and token values of your application respectively. Turn off the authorization then:
-by the basic authorization: use your application ID and token as Username and Password.
Example:
ICaaS response:
{
"files": [
{
"username": "60d3b778a46d2405c8a594f5",
"password": "31EB5DD16D131D3F6D96A25C48EE76495B70D4A1"
}
],
"properties": {
"region": "US",
"export_format": "XML",
"verification_type": "NoVerification"
}
}
Postman response:
{
"files": [
{
"username": "60d3b778a46d2405c8a594f5",
"password": "31EB5DD16D131D3F6D96A25C48EE76495B70D4A1"
}
],
"properties": {
"region": "US",
"export_format": "XML",
"verification_type": "NoVerification"
}
}
Comments
0 comments
Please sign in to leave a comment.