Skip to main content
GET
/
v3
/
products
/
{product_id}
/
follow-up-chats
List product follow-up chats
curl --request GET \
  --url https://api.myscalev.com/v3/products/{product_id}/follow-up-chats \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "bundle_id": 123,
      "change_status": true,
      "hours_after": 123,
      "id": 123,
      "image": "<string>",
      "is_default": true,
      "name": "<string>",
      "product_id": 123,
      "provider": "<string>",
      "store_id": 123,
      "text_for_bank_transfer": "<string>",
      "text_for_cod": "<string>",
      "text_for_epayment": "<string>",
      "trigger": "<string>",
      "wa_gateway_assignation_type": "<string>",
      "wa_integration": {
        "id": 123,
        "name": "<string>",
        "phone_number": "<string>",
        "provider": "<string>"
      }
    }
  ],
  "is_paginated": true,
  "has_next": false,
  "last_id": 99,
  "page_size": 25
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

product_id
string
required

Query Parameters

last_id
integer

Last ID for cursor-based pagination

page_size
integer

Number of items per page (default: 25, max: 25)

Required range: x <= 25
Example:

25

Response

Paginated list of follow up chats

Paginated list payload for v3.

data
ManagingFollowUpChat · object[]
required
is_paginated
enum<boolean>
required
Available options:
true
Example:

true

has_next
boolean
default:false
Example:

false

last_id
integer | null
Example:

99

page_size
integer
default:25
Example:

25