Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

...

Info

The Client ID and Client Secret are found in the Admin > Integration > LaunchPoint menu by selecting the custom service, and clicking View Details.

image-20250226-200614.pngimage-20250226-200625.png

The Identity URL and Endpoint URL is found in the Admin > Integration > Web Services menu in the REST API section.

Create an access token using an HTTP GET (or POST) request like so:

Code Block
GET <Identity URL>/oauth/token?grant_type=client_credentials&client_id=<Client Id>&client_secret=<Client Secret>

If your request was valid, you receive a JSON response similar to the following:

Code Block
{
    "access_token": "cdf01657-110d-4155-99a7-f986b2ff13a0:int",
    "token_type": "bearer",
    "expires_in": 3599,
    "scope": "apis@acmeinc.com"
}

Response Definition

  • access_token - The token that you pass with subsequent calls to authenticate with the target instance.

  • token_type - The OAuth authentication method.

  • expires_in - The remaining lifespan of the current token in seconds (after which it is invalid). When an access token is originally created, its lifespan is 3600 seconds or one hour.

  • scope - The owning user of the custom service that was used to authenticate.image-20250226-201515.pngImage Added

    ...

    Field Mapping

    When transferring data from Captello to Marketo, note that Marketo fields won't update if the corresponding Captello fields are empty. However, a value of '0' is treated as non-empty and triggers an update in Marketo.

    ...

    1. Configure capture forms + FA > Captello servers + Captello database

    2. Captello Mobile App + Captello Web View > Captello API > Captello servers + Captello database

    3. Captello servers + Captello database > Send to Marketo + Send Capture Submissions to Marketo > Marketo.

    Here is a diagram illustrating the field mapping between Captello and Marketo: 

    View file
    nameCaptello - Marketo Integration.pdf

    ...