RASL
RASL | DashboardContact
RASL | DashboardContact
Instagram
  1. Message Bot Management
RASL
  • Introduction
  • Messages
    • Overview
    • Message Bot Management
      • List Message Bots
        GET
      • Get Message Bots Details
        GET
    • 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. Message Bot Management

Get Message Bots Details

GET
https://getrasl.io/api/v1/{tenant-name}/messagebots/{id}
Get detailed information about a specific Message Bots

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

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 GET 'https://getrasl.io/api/v1//messagebots/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
{
  "status": "success",
  "data": {
    "id": 1,
    "tenant_id": 2,
    "name": "messagebot 1",
    "rel_type": "lead",
    "reply_text": "hello from message bot testing",
    "reply_type": 1,
    "trigger": "hello",
    "bot_header": null,
    "bot_footer": null,
    "button1": null,
    "button1_id": null,
    "button2": null,
    "button2_id": null,
    "button3": null,
    "button3_id": null,
    "button_name": null,
    "button_url": null,
    "addedfrom": 2,
    "is_bot_active": true,
    "sending_count": 0,
    "filename": null,
    "created_at": "2025-07-12T11:44:58.000000Z",
    "updated_at": "2025-07-12T11:44:58.000000Z"
  }
}
🟠400Bad Request
🟠401Unauthenticated
🟠404Not Found
Previous
List Message Bots
Next
Send Simple Message
Built with