Reject a brand proposal
curl --request POST \
--url https://workspace.passionfroot.me/api/creators/v1/proposals/{proposalId}/reject \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/proposals/{proposalId}/reject', 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/proposals/{proposalId}/reject"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": {
"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>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}Proposals
Reject a brand proposal
Rejects the proposal, cancels the collaboration, and releases its dates. Send a separate conversation message if the brand needs a reason. Naturally idempotent.
POST
/
proposals
/
{proposalId}
/
reject
Reject a brand proposal
curl --request POST \
--url https://workspace.passionfroot.me/api/creators/v1/proposals/{proposalId}/reject \
--header 'Authorization: Bearer <token>'const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://workspace.passionfroot.me/api/creators/v1/proposals/{proposalId}/reject', 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/proposals/{proposalId}/reject"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text){
"data": {
"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>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "Too many requests, please try again later."
}{
"error": "<string>"
}