App successfully installed!

 

Next steps:

  1. Copy the authorization code from the URL above. See example below:
    app-auth-code
  2. Open Postman (download here), then run a POST API request with the details below:

    API Endpoint URL: https://api.hubapi.com/oauth/v1/token
    METHOD: POST
    BODY:
    application/x-www-form-urlencoded
    DATA:
    grant_type:
    authorization_code
    client_id:
    App Client ID
    client_secret:
    App Client Secret
    redirect_uri:
    The URL above
    code: value after `code=` above

    Example:

    refresh-token-api-sample