Managem
HomeLink
Multiple Menus
  • Link1
  • Link2
HomeLink
Multiple Menus
  • Link1
  • Link2
  1. Conversations
  • Users
  • APIs
    • Basket
      • List items in the basket
      • Add an item to the basket
      • Update an item in the basket
      • Remove an item from the basket
      • Retrieve the basket summary
      • Retrieve the basket information, fees & delivery costs
      • Create a checkout session for the basket
    • Conversations
      • List conversations
        GET
      • Create conversation
        POST
      • Count unread messages
        GET
      • List messages
        GET
      • Send a message
        POST
    • Search
      • Search using full-text and facets
      • Lookup usernames
      • Retrieve an item by its URN or slug
      • Retrieve multiple items by URN
      • Retrieve a faceted hierarchy of items
      • Retrieve search results for a specific game
      • Retrieve search results for a specific set
      • Retrieve search results for a specific type
    • Sellers
      • Create listing
      • Search listings
      • Get listing
      • Update listing
      • Delete listing
      • Create image upload URL
      • Get delivery configuration
      • Upsert delivery configuration
      • List orders
      • Get order
      • Create seller account
      • Get seller account
      • Get seller status
      • Get dashboard link
      • Get seller balance
      • Withdraw funds
      • List payouts
      • List transfers
    • Seller Listings
      • Search listings
      • Search a seller's listings
      • Search listings for a specific item
      • Retrieve historical prices for an item
    • Users
      • Find/Lookup addresses
      • Retrieve full address details
      • Store a new Address
      • List all Addresses
      • Delete an Address
      • Get user account information
      • Update user password
      • Update user profile
      • Update a users email address by first requesting a verification code
      • Update a user's email address by verifying the received code
      • Create payment method
      • List payment methods
      • Delete payment method
      • List purchases
      • Get purchase
      • List reviews
      • Create review
      • Update review
      • Delete review
    • Profiles
      • Get user profile
      • List reviews
  1. Conversations

Create conversation

POST
/conversations
Create a new conversation by sending the first message. If the recipient has been inactive for more than five minutes, an email notification is sent.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.managem.co.uk/conversations' \
--header 'Content-Type: application/json' \
--data-raw '{
    "entityId": "string",
    "recipientId": "string",
    "body": "string"
}'
Response Response Example
{
    "id": "string",
    "entityId": "string",
    "userAId": "string",
    "userBId": "string",
    "createdAt": "string",
    "updatedAt": "string",
    "lastMessage": {
        "id": "string",
        "conversationId": "string",
        "senderId": "string",
        "body": "string",
        "createdAt": "string",
        "viewedAt": "string"
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢201Created
application/json
Conversation created
Body

Previous
List conversations
Next
Count unread messages
Built with