Get a collaboration
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "<string>",
"name": "<string>",
"creatorId": "<string>",
"campaignId": "<string>",
"status": "pending",
"priceCents": 123,
"usdPriceCents": 123,
"currency": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"statusUpdatedAt": "2023-11-07T05:31:56Z",
"campaign": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"budgetAmountCents": 123,
"budgetCurrency": "<string>"
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}Collaborations
Get a collaboration
Returns a collaboration that is accessible to the organization.
GET
/
collaborations
/
{collaborationId}
Get a collaboration
curl --request GET \
--url https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://workspace.passionfroot.me/api/v1/collaborations/{collaborationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "<string>",
"name": "<string>",
"creatorId": "<string>",
"campaignId": "<string>",
"status": "pending",
"priceCents": 123,
"usdPriceCents": 123,
"currency": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"statusUpdatedAt": "2023-11-07T05:31:56Z",
"campaign": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"budgetAmountCents": 123,
"budgetCurrency": "<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 Partner workspace.
Path Parameters
Query Parameters
Set to campaign to include campaign details.
Available options:
campaign Response
The collaboration.
Show child attributes
Show child attributes