POST
/
v1
/
facebook
/
groups
/
{groupId}
/
message
curl --request POST \
  --url https://api.papercuts.ai/v1/facebook/groups/{groupId}/message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-User-Token: <api-key>' \
  --data '{
  "message": "<string>"
}'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Your Papercuts API Key

X-User-Token
string
header
required

User Token received while integrating end user accounts

Path Parameters

groupId
string
required

The ID of the Facebook group

Body

application/json
message
string
required

The message to post to the group

Response

200
application/json
Message posted successfully
status
enum<string>
Available options:
ok,
error