[SalesForce] Authorization Error in Postman when connecting to Marketing Cloud

I am trying to get Authorization code from Postman by sending the Post request to " [https://auth.excattargetapis.com/v1/requestToken]".

In the Body of the Postman I have clientId and clientSecret but Authorisation comes with following error

"documentation": "https://developer.salesforce.com/docs/atlas.en-us.mc-apis.meta/mc-apis/error-handling.htm",
"errorcode": 0,
"message": "Bad Request"

Best Answer

A bad request usually means your call is malformed. I would recommend using this Postman library. It would store your credentials as environment variables and then you dont have to worry about handling the token call; it would be templated.

Reference:

Related Topic