Bridgetown Research
  1. Experts (Bridgetown Research)
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. Experts (Bridgetown Research)

(create) expert details

POST
/v1/external/experts

Request

Header Params

Body Params application/json

Examples

Responses

🟢201Created
application/json
Expert created/shared
Body

🟠400Bad Request
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/external/experts' \
--header 'Content-Type: application/json' \
--data-raw '{
    "expertId": "exp-001",
    "projectId": "proj-001",
    "name": "Jane Doe",
    "expertise": [
        "Catalog printing industry insights, competitive positioning, service differentiation"
    ],
    "currency": "USD",
    "honorariumPerHour": 150,
    "archetype": [
        "Former Employees of The Dingley Press",
        "Current & Former Competitor Employees",
        "Customers (Businesses Using Catalog Printing Services)"
    ],
    "experience": [
        {
            "title": "Director",
            "company": "ACME",
            "yearsOfExperience": 5,
            "metadata": {
                "location": "US",
                "division": "Product",
                "startDate": "2025-03-27",
                "endDate": "2025-03-27"
            }
        }
    ],
    "comment": "I am a former employee of The Peacock Press",
    "expertScreeningResponses": [
        {
            "question": "Have you worked at The Dingley Press in a strategy, operations, sales, or product role?",
            "response": "Yes"
        }
    ]
}'
Response Response Example
201 - Success
{
    "status": "success",
    "expertId": "exp-001",
    "message": "Expert shared successfully"
}
Modified at 2025-06-07 09:26:55
Previous
Update the status of a project
Next
(update) expert details
Built with