List conversation messages
curl --request GET \
--url https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"type": "<string>",
"actor": "creator",
"collaborationId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"text": "<string>",
"comment": "<string>",
"attachments": [
{
"fileName": "<string>",
"fileSize": 123,
"mimeType": "<string>",
"downloadUrl": "<string>"
}
],
"proposal": {
"proposalId": "<string>",
"collaborationId": "<string>",
"requestId": "<string>",
"status": "offer_pending",
"createdBy": "creator",
"priceCents": 123,
"budgetCents": 123,
"currency": "<string>",
"packageName": "<string>",
"placements": [
{
"date": "<string>",
"postType": "<string>",
"platform": "<string>"
}
],
"comment": "<string>"
},
"stats": {
"viewCount": 123,
"likeCount": 123,
"commentCount": 123,
"shareCount": 123,
"contentUrl": "<string>",
"contentTitle": "<string>",
"platform": "<string>"
}
}
],
"pagination": {
"hasMore": true,
"nextCursor": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Conversations
List conversation messages
Returns the complete typed timeline newest first. Reading has no side effects. A blocked conversation’s timeline is unavailable until it is unblocked in the inbox.
GET
/
conversations
/
{conversationId}
/
messages
List conversation messages
curl --request GET \
--url https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/creators/v1/conversations/{conversationId}/messages"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": [
{
"id": "<string>",
"type": "<string>",
"actor": "creator",
"collaborationId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"text": "<string>",
"comment": "<string>",
"attachments": [
{
"fileName": "<string>",
"fileSize": 123,
"mimeType": "<string>",
"downloadUrl": "<string>"
}
],
"proposal": {
"proposalId": "<string>",
"collaborationId": "<string>",
"requestId": "<string>",
"status": "offer_pending",
"createdBy": "creator",
"priceCents": 123,
"budgetCents": 123,
"currency": "<string>",
"packageName": "<string>",
"placements": [
{
"date": "<string>",
"postType": "<string>",
"platform": "<string>"
}
],
"comment": "<string>"
},
"stats": {
"viewCount": 123,
"likeCount": 123,
"commentCount": 123,
"shareCount": 123,
"contentUrl": "<string>",
"contentTitle": "<string>",
"platform": "<string>"
}
}
],
"pagination": {
"hasMore": true,
"nextCursor": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Authorizations
Create an API key from Settings → API in an approved Creator workspace.
Path Parameters
Query Parameters
Include messages created on or after this date or timestamp.
Required range:
1 <= x <= 250Opaque cursor returned by the previous page.