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

Post completion details for a call

POST
/v1/external/calls/actions/log-call

Request

Header Params

Body Params application/json

Examples

Responses

🟢200OK
application/json
Call completion details recorded
Body

🟠400Bad Request
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/v1/external/calls/actions/log-call' \
--header 'x-client-code;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "expertId": "exp-001",
    "projectId": "proj-001",
    "callId": "string",
    "duration": 900,
    "status": "COMPLETED",
    "reason": "The expert was not available",
    "callStartTime": "2025-04-02T10:00:00Z",
    "callEndTime": "2025-04-02T11:00:00Z"
}'
Response Response Example
200 - Success
{
    "status": "success",
    "message": "Call details saved successfully"
}
Modified at 2025-06-07 09:27:15
Previous
Schedule a call with an expert
Built with