POST
/
voice
/
api
/
v2
/
transaction
/
stop
/
{session_id}
curl --request POST \
  --url https://api.eka.care/voice/api/v2/transaction/stop/{session_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "audio_files": [
    "2.m4a",
    "3.m4a"
  ]
}'
{
  "status": "success",
  "message": "Transaction stopped successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

session_id
string
required

Unique identifier for the transaction session

Example:

"test_1234"

Body

application/json

Response

200
application/json

Transaction stopped successfully

The response is of type object.