Bellwork
OpportunitiesVerdicts

List how a project's opportunities are filed

Every verdict for a project: acted on (`pursued`), set aside (`dismissed`) or `not_useful`. One per opportunity, shared by the team on that project. An opportunity with no verdict is still open.

GET
/opportunities/verdicts

Every verdict for a project: acted on (pursued), set aside (dismissed) or not_useful. One per opportunity, shared by the team on that project. An opportunity with no verdict is still open.

AuthorizationBearer <token>

API key (sk_live_... prefix). Generate keys in the UI under Settings > API Keys, then send it as Authorization: Bearer sk_live_...

In: header

Query Parameters

project_id*string

Project the verdicts belong to (must belong to your organization)

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://loading/api/v1/opportunities/verdicts?project_id=497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "data": [
    {
      "opportunity_id": "5c7fee95-8917-4b3c-8649-bbbc4ef0c4f7",
      "verdict": "pursued",
      "reason_code": "not_what_we_sell",
      "reason_note": "string",
      "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
      "updated_at": "string"
    }
  ]
}
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}
Empty
{
  "error": "string",
  "message": "string",
  "statusCode": -9007199254740991
}