My Project
  1. Gorups
My Project
  • Default module
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag
  • Tirelire
    • Gorups
      • Get groups
        GET
      • Create group
        POST
      • update group
        PUT
      • leave group
        POST
      • delete group
        DELETE
    • Tickets
      • create ticket
      • get ticket by group
      • update status
    • chat
      • send message to chat
      • New Request
    • Auth
      • login
      • Register
  1. Gorups

Create group

POST
/api/groups

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/groups' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name":"Best group 1",
    "description":"this is the description of best group 1"
}'
Response Response Example
{}
Modified at 2025-10-17 14:52:15
Previous
Get groups
Next
update group
Built with