Bridgetown Research
  1. Sample Schemas
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
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
    • Schemas
      • ExpertActionRequest
      • ProjectCreateRequest
      • ExpertActionResponse
      • ProjectStatusUpdateRequest
      • ExpertShareRequest
      • ProjectResponse
      • Expert
      • InterviewSchema
      • ExpertShareResponse
      • TargetRespondentsSchema
      • Experience
      • CallScheduleRequest
      • Error
      • ApprovedScheduleRequest
      • RejectedScheduleRequest
      • CallScheduleResponse
      • CallCompletionRequest
      • SuccessfulCallCompletionRequest
      • UnsuccessfulCallCompletionRequest
      • CallCompletionResponse
    • Response
      • BadRequestError
      • InternalServerError
  1. Sample Schemas

Pet

{
    "id": 1,
    "category": {
        "id": 1,
        "name": "string"
    },
    "name": "doggie",
    "photoUrls": [
        "string"
    ],
    "tags": [
        {
            "id": 1,
            "name": "string"
        }
    ],
    "status": "available"
}
Built with