Dev Docs
  • Introduction
  • Becoming an ORCA Developer
  • Why Sign Up?
  • Developer Resources
  • Understanding Service Apps
  • How to Create a Service App for the ORCA Marketplace
  • Available Permissions
  • How to Request Permissions for a Service App
  • Happy Hours Admin
    • Happy Hours Admin
  • Cyress Tests
    • Cypress Test
  • Orca API
    • Education/Breakaway
    • TypeForm WebHook
    • getOrcaVideoList
    • getPremiumCourses
    • getCourseUsers
    • getDashBoardHeroStatistics
    • getUserProgress
    • Remove CE Credit
    • Add CE Credit
  • TypeForm
    • Setup a webHook on TypeForm
  • Database Migrations
    • MySQL Import Data using Laravel Seeds.
Powered by GitBook
On this page
  1. Orca API

TypeForm WebHook

Api to save and control the typeForm emails and form submissions

save Orca Access typeForm submitted

POST {{HOST}}api/submitOrcaAccessTypeform

This endpoint allows you to check and save the information submitted on Orca Access TypeForm

Request Body

Name
Type
Description

form_response

object

{ "form_id": "CIlopJ",, "answers": [ { "type": "text", "text": "Mehmet", "field": { "id": "XyqdiK4dTK9z", ...} }]

{
  "data": [
    {
      "type": "text",
      "text": "Chile",
      "form_id": "XyqdiK4dTK9z"
    },
    {
      "type": "email",
      "email": "ivasniel+11@digitalplankton.co",
      "form_id": "rxMiaHJwcoCS"
    },
    {
      "type": "text",
      "text": "boalt",
      "form_id": "LMvGgpvuYo6x"
    },
    {
      "type": "choices",
      "choices": {
        "labels": [
          "Software Developer"
        ]
      },
      "form_id": "sKBKgAEDMqpm"
    },
    {
      "type": "phone_number",
      "phone_number": "+12312312323",
      "form_id": "g3zCgHTTCfw8"
    }
  ],
  "message": "",
  "errorCode": null,
  "errors": []
}
{
  "data": [],
  "message": "",
  "errorCode": null,
  "errors": {
    "error_message": "The current email is mark as Spam: mhmtkymk321@gmail.com"
  }
}

If the request was successful we send an email to the supervisor and also save the record in the lead table.

PreviousEducation/BreakawayNextgetOrcaVideoList

Last updated 4 years ago