# Freeflow | text

**POST** `/api/v1/send-freeflow-message`

Product: [RCS](https://devdocs.pinnacle.in/docs/rcs.md)  
Version: [1.0](https://devdocs.pinnacle.in/docs/rcs/1-0.md)

## Request

URL: `https://api.example.com/rcs/api/v1/send-freeflow-message`

Authentication location: `header`

Authentication name: `Authorization`

### Request schema


```json
{
  "type": "object",
  "properties": {
    "to": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "correlationId": {
      "type": "string"
    },
    "messagePayload": {
      "type": "object",
      "properties": {
        "templateType": {
          "type": "string"
        },
        "textMessageDetails": {
          "type": "object",
          "properties": {
            "messageContent": {
              "type": "string"
            },
            "suggestionsList": {
              "type": "array",
              "items": {}
            }
          }
        }
      }
    }
  }
}
```

### Request example


```json
{
  "to": "917972086759",
  "category": "promotional",
  "correlationId": "dfsdfaccv234",
  "messagePayload": {
    "templateType": "text_message",
    "textMessageDetails": {
      "messageContent": "Visit our nearest branch for valuable offers & avail best discount. Contact us for latest promo codes.",
      "suggestionsList": []
    }
  }
}
```

## Response schema


```json
{}
```

## Response examples


```json
{}
```

## Status codes


```json
[
  {
    "code": 200,
    "description": "Successful response"
  }
]
```
