POST
/
conversations
/
groups
curl --request POST \
  --url https://schoolmaker.co/api/v1/conversations/groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "title": "<string>",
  "message": "<string>",
  "sender_id": "school_owner_id",
  "member_participants": [
    "jsmith@example.com"
  ],
  "user_participants": [
    "jsmith@example.com"
  ]
}'
{
  "group_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

201 - application/json

Group created

The response is of type object.