Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 3 Next »

1.0 Authentication Token

In order for you to query the API, all requests must be sent with an authentication token.

This needs to be requested from the following url using a POST request. Once the token has been returned, it will expire after 60 minutes.

GET

https://{enterprise}.cvtr.io/api/v3/campaign/{CAMPAIGN_ID}/leads/{LEAD_ID}?access_token={ACCESS_TOKEN}


ParameterRequiredDescription
CAMPAIGN_IDYesCampaign ID of lead
LEAD_IDYesLead ID
ACCESS_TOKENYesAccess token (more information)
usernameYesYour username
passwordYesYour password

Response

{
    access_token: "ODM5NTIwNjk1MjdhNTMzMzk0MTY2Y2ZkYjg2OWFlN2Y5YzZlNTk1NmUwZmVjOGRkMDhhMzllYTA2ZTA0MDI3Zg"
    expires_in: 3600
    token_type: "bearer"
    scope: null
    refresh_token: "YTQzODk3MDdiM2FhMGYzODYyOTcyOTBkYWZiZWI3YzJmNmEwYmJkYWJiM2I0NzU1Y2Q5OTcwZDA0YzhiZGNjYQ"
}

  • No labels