Send an inquiry
curl --request POST \
--url https://workspace.passionfroot.me/api/v1/inquiries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creatorId": "418f65a3-8981-4b31-aadf-9b399ab64475",
"text": "We would love to work together on our fall launch."
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
creatorId: '418f65a3-8981-4b31-aadf-9b399ab64475',
text: 'We would love to work together on our fall launch.'
})
};
fetch('https://workspace.passionfroot.me/api/v1/inquiries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/inquiries"
payload = {
"creatorId": "418f65a3-8981-4b31-aadf-9b399ab64475",
"text": "We would love to work together on our fall launch."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"conversationId": "conv_abc",
"messageId": "msg_abc",
"collaborationId": "collab_abc"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}Conversations
Send an inquiry
Sends initial outreach to a creator and creates a conversation and inquiry collaboration when needed.
POST
/
inquiries
Send an inquiry
curl --request POST \
--url https://workspace.passionfroot.me/api/v1/inquiries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creatorId": "418f65a3-8981-4b31-aadf-9b399ab64475",
"text": "We would love to work together on our fall launch."
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
creatorId: '418f65a3-8981-4b31-aadf-9b399ab64475',
text: 'We would love to work together on our fall launch.'
})
};
fetch('https://workspace.passionfroot.me/api/v1/inquiries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/inquiries"
payload = {
"creatorId": "418f65a3-8981-4b31-aadf-9b399ab64475",
"text": "We would love to work together on our fall launch."
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"data": {
"conversationId": "conv_abc",
"messageId": "msg_abc",
"collaborationId": "collab_abc"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}Authorizations
Create an API key from Settings → API in an approved Partner workspace.
Headers
Unique key for one logical write. Reuse the key and identical body for retries.
Required string length:
1 - 255Body
application/json
Response
Inquiry sent.
Show child attributes
Show child attributes