POST
/
actions
/
linkedin
/
sendMessage
curl --request POST \
  --url https://svc.sandbox.anon.com/actions/linkedin/sendMessage \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "message": "<string>",
  "appUserId": "<string>",
  "conversationId": "<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
message
string
required
appUserId
string
required

The ID of the user to take the action for

conversationId
string
required
appUserPoolId
string | null

The ID of the user pool that contains the user ID

Response

200 - application/json
success
boolean
required