Marketo Engage Rest API (1.0)

Download OpenAPI specification:Download

Marketo Engage Rest API

Identity

Identity Controller

Identity

Retrieve an access token from Marketo Engage. Calls to this endpoint are not counted towards API call limit.

Request
query Parameters
client_id
required
string <string>

Client ID from Admin > Integration > Launchpoint menu.

client_secret
required
string <string>

Client Secret from Admin > Integration > Launchpoint menu.

grant_type
required
string <string>

Grant type.

Value: "client_credentials"
Responses
200

OK

get/identity/oauth/token
Response samples
application/json
{
  • "access_token": "string",
  • "scope": "string",
  • "expires_in": 0,
  • "token_type": "bearer"
}

Identity

Retrieve an access token from Marketo. Calls to this endpoint are not counted towards API call limit.

Request
query Parameters
client_id
required
string <string>

Client ID from Admin > Integration > Launchpoint menu.

client_secret
required
string <string>

Client Secret from Admin > Integration > Launchpoint menu.

grant_type
required
string <string>

Grant type.

Value: "client_credentials"
Responses
200

OK

post/identity/oauth/token
Response samples
application/json
{
  • "access_token": "string",
  • "scope": "string",
  • "expires_in": 0,
  • "token_type": "bearer"
}