Bridgetown Research
  1. Projects
Bridgetown Research
  • Projects
    • Create a new project
      POST
    • Update a project
      PUT
    • Update the status of a project
      POST
  • Experts (Bridgetown Research)
    • (create) expert details
      POST
    • (update) expert details
      PUT
    • (get) expert details
      GET
    • (create) expert action
      POST
  • Experts
    • Schedule a call with an expert
      POST
    • Post completion details for a call
      POST
  1. Projects

Update a project

PUT
/v1/external/projects

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Project updated
Body

🟠400Bad Request
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/v1/external/projects' \
--header 'x-client-code;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "projectId": "ACME-proj001",
    "topic": "ACME-proj001",
    "description": "A research initiative focused on the printing industry, including the competitive landscape, key purchase criteria (KPCs), product differentiation, and industry challenges",
    "targetDate": "2025-04-01T09:00:00Z",
    "clientGeography": "US",
    "functions": [
        "Strategy",
        "Operations",
        "Sales",
        "Product"
    ],
    "secondaryTopics": [
        "Market trends",
        "customer acquisition strategies",
        "operational efficiencies"
    ],
    "offlimitCompanies": [
        "The Tiger Press"
    ],
    "offlimitTopics": [
        "Current pricing strategies",
        "confidential client lists",
        "proprietary processes"
    ],
    "externalRefProjectId": "string",
    "targetRespondents": {
        "numberOfRespondents": 10,
        "minExperienceYears": 5,
        "targetGeography": "US",
        "archetype": [
            "Former Employees of The Dingley Press",
            "Current & Former Competitor Employees",
            "Customers (Businesses Using Catalog Printing Services)"
        ],
        "targetCompanies": [
            "ACME",
            "USHA",
            "ROGAU"
        ],
        "targetRoles": [
            "Strategy",
            "Marketing Director",
            "Operations Lead"
        ],
        "specificExperts": [
            {
                "company": "ACME",
                "role": "Strategy"
            }
        ]
    },
    "interview": {
        "minWords": 500,
        "lengthOfInterview": 900,
        "screeningQuestions": [
            "Have you worked at The Dingley Press in a strategy, operations, sales, or product role?"
        ],
        "testLink": "https://teamroom.ai/meetingroom/test",
        "notes": "string"
    },
    "status": "Open",
    "type": "Survey"
}'
Response Response Example
200 - Success
{
    "status": "success",
    "projectId": "proj-12345",
    "message": "Project created successfully"
}
Modified at 2025-06-07 09:27:15
Previous
Create a new project
Next
Update the status of a project
Built with