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:
- Add
OAuth Server-to-Servercredentials to your Adobe Analytics project on the Adobe Developer Console. - Once the OAuth Server-to-Server credentials are generated, copy the following properties:
CLIENT IDCLIENT SECRET
- Use the values as inputs of a
createAdobeOauthServerToServerConnectionmutation:
createAdobeOauthServerToServerConnectionTry in Explorer
GraphQL
mutation createAdobeOauthServerToServerConnection($input: CreateAdobeOauthServerToServerConnectionInput!){
createAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}
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:
updateAdobeOauthServerToServerConnectionTry in Explorer
GraphQL
mutation updateAdobeOauthServerToServerConnection($input: UpdateAdobeOauthServerToServerConnectionInput!){
updateAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}
Deleting an Adobe Adobe OAuth Server To Server Connection
An existing Adobe JTW connection can be deleted via deleteAdobeOauthServerToServer mutation:
deleteAdobeOauthServerToServerConnectionTry in Explorer
GraphQL
mutation deleteAdobeOauthServerToServerConnection($input: DeleteAdobeOauthServerToServerConnectionInput!){
deleteAdobeOauthServerToServerConnection(input: $input) {
adobeOauthServerToServerConnection {
clientId
}
}
}