I m trying get access token , but unable to locate Access token URL , Docuents says Suitecrm url/Api/access_token but unbale to locate it in my crm . No such folder exists , how will i find Access tken URL please help
That URL isn’t an actual folder but it is definitely where you get the access token for V8 API. Not sure if your talking about SuiteCRM 8, or just API V8, but I’ve successfully got the token in SuiteCRM 7 V8 API at: …/Api/access_token
I use it to push leads in from Gravity Froms in WordPress with Gravity Forms Webhooks.
Hello,
I have SuiteCRM running on PHP 7.3 and the …/API/access_token URL returns 400 Bad request.
I would like to get access token using username and password.
How the json payload should look like? The below payload does not work
{
"grant_type": "password",
"client_id": "[client id from oAuth2 Clients and Tokens]",
"client_secret":"client_secret",
"username": "[username]",
"password": "[password]"
}