Skip to main content
POST
/
api
/
v1
/
slack
/
oauth
/
claim
Claim pending Slack installation
curl --request POST \
  --url https://neo.api.projectdiscovery.io/api/v1/slack/oauth/claim \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "setup_token": "<string>"
}
'
{
  "status": "not_connected",
  "installation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "team_id": "<string>",
  "team_name": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.neo.projectdiscovery.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT authentication token

Body

application/json
setup_token
string
required

Opaque setup token returned after a Slack Marketplace install

Response

Slack installation claimed successfully

status
enum<string>
required

Current Slack installation status

Available options:
not_connected,
active,
pending_unclaimed,
revoked_external,
disconnected_by_user
installation_id
string<uuid>

Installation ID (only present if connected)

team_id
string

Slack workspace ID (only present if connected)

team_name
string

Slack workspace name (only present if connected)