Skip to main content
POST
/
groups
Create a group
curl --request POST \
  --url https://api-joy.joyfill.io/v1/groups \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "<string>",
  "title": "<string>"
}'
"{\n  \"identifer\": \"String\",\n  \"title\": \"String\"\n}"

Headers

Authorization
string

Supports both API Key and User Access Token authorization. See https://joyfill.mintlify.app/api/authentication

Body

application/json
identifier
string

Specifies a group's unique ID. Maximum length is 80 characters. * Don't use personally identifiable information (PII) such as the user's email address, legal name, or phone number. Identifier cannot be changed after creation. Leave the identifier param empty to have Joyfill auto generate an identifier.

title
string

Response

200

identifer
string
Example:

"String"

title
string
Example:

"String"