POST
/
actions
/
linkedin
/
sendConnectionRequest
curl --request POST \
  --url https://svc.sandbox.anon.com/actions/linkedin/sendConnectionRequest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "profileId": "<string>",
  "appUserId": "<string>",
  "message": "<string>",
  "appUserPoolId": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
profileId
string
required
appUserId
string
required

The ID of the user to take the action for

message
string | null
appUserPoolId
string | null

The ID of the user pool that contains the user ID

Response

200 - application/json
success
boolean
required