Articles on: Public API (Webhooks)
This article is also available in:

Praiz API (Webhooks)

Are you looking to connect Praiz with your CRM or other business software?

We have a public API (Webhooks) available on demand, contact us for more details: hello@praiz.io

Here is an example of our webhook payload:

{
"request_id":"request_id",
"datetime":"request_datetime",
"video":{
"id":"video.id",
"title":"video.title",
"duration":"video.duration",
   "transcript_url": "video.transcript_url",
   "user_email":"video.user.email",
   "source":"video.source",
   "url":"video_url",
   "created_date":"video.created_date", // format "%Y-%m-%d %H:%M:%S"
   "participants":[
      {
        "first_name": "video_participant.first_name",
        "last_name": "video_participant.last_name", 
        "email": "video_participant.email", 
        "phone_number": "video_participant.phone_number" 
      }
    ]
  },
  "template":{
   "name":"template.name",
   "fields":"field ="{
     "name":"template_field.name",
     "description":"template_field.description",
     "type":"template_field.field_type",
     "extracted_value":"value"
   }
  }
}

Updated on: 04/02/2025