RASL
RASL | DashboardContact
RASL | DashboardContact
Instagram
  1. Contacts
RASL
  • Introduction
  • 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. Contacts

Get Contact Details

GET
https://getrasl.io/api/v1/{tenant-name}/contacts/{id}

Retrieve detailed information about a specific contact by their ID#

This endpoint returns all available contact data including personal information, groups, and metadata.

Use Cases#

View complete contact profile
Check contact details before updates
Display contact information in admin interfaces
Verify contact data for integrations

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//contacts/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body

Example
{
  "status": "success",
  "data": {
    "id": 25,
    "tenant_id": 13,
    "firstname": "Mahmoud",
    "lastname": "Elsayed",
    "company": "RASL",
    "type": "lead",
    "email": "mahmoud@example.com",
    "phone": "+201XXXXXXXXX",
    "source_id": 2,
    "status_id": 1,
    "description": "Potential client interested in premium services",
    "country_id": 101,
    "group_id": [
      1,
      2
    ],
    "addedfrom": 15,
    "created_at": "2024-02-08T14:30:25.000000Z",
    "updated_at": "2024-02-08T14:30:25.000000Z"
  }
}
🟠400Bad Request
🟠401Unauthenticated
🟠404Not Found
Previous
List Contacts
Next
Update Contact Information
Built with