I am having an API with some url1 (post method) which takes following in its header:
username:
password:
apiaccesskey:
Content-Type: application/json
when its tested in postman it give reponse which has following data:
access token:
refresh token:
expiry:
Now, I have another url2 (post method) which takes following data in its header:
accessToken:
apiaccesskey:
username:
passoword:
refreshtoken:
Content-Type:
which takes certain data in body as json (it has 200 fields) as a request data.
Now this API integration I need to do using SAP PO which will connect with the enterprise SAP system.
The communication will be synchronous.
I want to know the step by step procedure if it is achievable in SAP PO.