Skip to main content

Adobe OAuth Server To Server Connection

The following guide will show you how to add an Adobe OAuth Server To Server Connection to your Lumar account.

Creating an Adobe OAuth Server To Server Connection

To connect your Lumar account to an Adobe Analytics project:

  1. Add OAuth Server-to-Server credentials to your Adobe Analytics project on the Adobe Developer Console.
  2. Once the OAuth Server-to-Server credentials are generated, copy the following properties:
  • CLIENT ID
  • CLIENT SECRET
  1. Use the values as inputs of a createAdobeOauthServerToServerConnection mutation:
mutation createAdobeOauthServerToServerConnection($input: CreateAdobeOauthServerToServerConnectionInput!){
createAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}

Try in explorer

Updating the credentials of an existing Adobe Adobe OAuth Server To Server Connection

The credentials of an existing Adobe Adobe OAuth Server To Server can be updated via updaateAdobeOauthServerToServer mutation:

mutation updateAdobeOauthServerToServerConnection($input: UpdateAdobeOauthServerToServerConnectionInput!){
updateAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}

Try in explorer

Deleting an Adobe Adobe OAuth Server To Server Connection

An existing Adobe JTW connection can be deleted via deleteAdobeOauthServerToServer mutation:

mutation deleteAdobeOauthServerToServerConnection($input: DeleteAdobeOauthServerToServerConnectionInput!){
deleteAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}

Try in explorer