Placewise API
Get startedExplore
Get startedExplore
Performance Cloud 🗗
Placewise 🗗
ExplorePublic APIManagement APIUsers API
Operations APIMessaging APIReporting APIML APIData API
ExplorePublic APIManagement APIUsers API
Operations APIMessaging APIReporting APIML APIData API
  1. Conversations
  • Introduction
  • Users
    • Introduction
    • Account
      • Show Notifications Settings
      • Update Notifications Settings
    • List Users
      GET
  • Conversations
    • Introduction
    • Conversations
      • Mark Conversation as "received"
        PUT
      • Create Conversation
        POST
      • List Conversations
        GET
      • Show Conversation
        GET
      • Mark Conversation as "seen"
        PUT
      • Archive Conversation
        PUT
    • Messages
      • Create Message
      • List Messages
      • Archive Message
  • Notifications
    • List Notifications
      GET
    • Show Notification
      GET
    • Mark all Notifications as Received
      PUT
    • Mark Notification as Seen
      PUT
    • Mark all Notifications as Seen
      PUT
    • Mark Notification as Received
      PUT
  • Subunits Scopes
    • List Subunits Scopes for User
      GET
  1. Conversations

List Conversations

Pending
GET
https://api.mpc.dev.placewise.com/v1/users/me/conversations
API Permit:Conversations:Api:Users:Conversations:Index
API Context:Customer
Authorizations:User
Returns list of Conversations that user Conversations in.

Query Parameters#

ParameterTypeDefaultDescription
per_pageinteger100Number of results to be returned per request (100 is the maximum)
page_nointeger1Number of results page
sort_bystringcreated_atProperty on which list is sorted
sort_directionstringdescSort direction (asc, desc)
with_archivedboolfalseList archived and active conversations

Example#

When successful, returns object containing Conversations and PaginationInfo
{
  "conversations": [], // List of Conversations - see 'Conversation model'
  "pagination_info": {} // Pagination info - see 'Pagination info'
}

Request

Query Params

Header Params

Body Params application/x-www-form-urlencoded

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C#
Ruby
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.mpc.dev.placewise.com/v1/users/me/conversations?only_unseen=false' \
--header 'X-User-Agent;' \
--header 'X-Product-Name;' \
--header 'X-Loyalty-Club-Slug;' \
--header 'X-Customer;' \
--header 'Authorization: Bearer '

Responses

🟢200Success
application/json
Body

Example
{}
Previous
Create Conversation
Next
Show Conversation
Built with