RASL
RASL | DashboardContact
RASL | DashboardContact
Instagram
  1. Groups
RASL
  • Introduction
  • Changelog
  • Messages
    • Overview
    • Message Bot Management
      • List Message Bots
      • Get Message Bots Details
    • Send Simple Message
      POST
    • Send Media Message
      POST
  • Templates
    • Overview
    • Template Management
      • Template Bot
        • List Template Bots
        • Get Template Bots Details
      • List Templates
      • Get Template Details
    • Send Authentication Template
      POST
    • Send Template Message
      POST
  • Contacts
    • Overview
    • Create a New Contact
      POST
    • List Contacts
      GET
    • Get Contact Details
      GET
    • Update Contact Information
      PUT
    • Delete Contact
      DELETE
  • Groups
    • Overview
    • Create Group
      POST
    • List Groups
      GET
    • Get Group Details
      GET
    • Update Group
      PUT
    • Delete Group
      DELETE
  • Statuses
    • Overview
    • Create Status
      POST
    • List Statuses
      GET
    • Get Status Details
      GET
    • Update Status
      PUT
    • Delete Status
      DELETE
  • Sources
    • Overview
    • Create Source
    • List Sources
    • Get Source Details
    • Update Source
    • Delete Source
  • Integrations
    • N8N Webhook Integration
    • Webhook Format Reference
    • eCommerce Webhook Integration
      • Webhook Listener
      • WooCommerce Webhook Setup
RASL | DashboardContact
RASL | DashboardContact
Instagram
  1. Groups

Create Group

POST
https://getrasl.io/api/v1/{tenant-name}/groups
Create a new Group in the system

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Header Params

Body Params application/jsonRequired

Example
{
  "name": "Referral"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://getrasl.io/api/v1//groups' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "name": "Referral"
}'

Responses

🟢201Created
application/json
Body

Example
{
  "status": "success",
  "data": [
    {
      "id": 19,
      "tenant_id": 13,
      "name": "VIP Customers",
      "contact_count": 25,
      "created_at": "2024-02-08T10:00:00.000000Z",
      "updated_at": "2024-02-08T10:00:00.000000Z"
    },
    {
      "id": 18,
      "tenant_id": 13,
      "name": "Newsletter Subscribers",
      "contact_count": 150,
      "created_at": "2024-02-07T09:30:00.000000Z",
      "updated_at": "2024-02-07T09:30:00.000000Z"
    }
  ],
  "meta": {
    "current_page": 1,
    "total": 10,
    "per_page": 15,
    "last_page": 1
  }
}
🟠400Bad Request
🟠401Unauthenticated
🟠422Validation Errors
Previous
Overview
Next
List Groups
Built with