Query
query MySlackInstallationInfo($redirectUrl: String!) {
mySlackInstallationInfo(redirectUrl: $redirectUrl) {
installationUrl
}
}Variables
{
"redirectUrl": "string"
}Response
{
"data": {
"mySlackInstallationInfo": {
"installationUrl": "string"
}
}
}Queries
mySlackInstallationInfo
Returns a Slack OAuth installation URL for the current user to connect their personal Slack notifications integration. Pass this URL to Slack’s OAuth flow and exchange the resulting code with createMySlackIntegration.
QUERY
mySlackInstallationInfo(redirectUrl: String!): UserSlackInstallationInfo!Arguments
redirectUrl
String!
required
Returns
installationUrl
String!
Query
query MySlackInstallationInfo($redirectUrl: String!) {
mySlackInstallationInfo(redirectUrl: $redirectUrl) {
installationUrl
}
}Variables
{
"redirectUrl": "string"
}Response
{
"data": {
"mySlackInstallationInfo": {
"installationUrl": "string"
}
}
}Was this page helpful?

