Skip to content

Bmonkey · Quickstart

This content is not available in your language yet.

  1. Crea tu tenant desde el panel de Platform o vía POST /tenants. Guarda el api_key y webhook_secret que devuelve la respuesta — no se pueden recuperar después.

  2. Configura tu webhook endpoint apuntando a una URL HTTPS pública.

    Ventana de terminal
    curl -X PUT https://api.digital-jungle.bjungle.com/tenants/$ID/webhook-endpoints/bmonkey \
    -H "Authorization: Bearer $ADMIN_TOKEN" \
    -H "Content-Type: application/json" \
    -d '{"url": "https://tu-app.com/webhooks/bmonkey"}'
  3. Crea una plantilla de formulario con el Form Builder o por API.

  4. Envía tu primer submission desde tu backend:

    Ventana de terminal
    curl -X POST https://api.digital-jungle.bjungle.com/v1/kyc/submissions \
    -H "X-API-Key: $API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"template_code":"persona-natural-v1", "answers":{...}}'
  5. Recibe el resultado por webhook (evento bmonkey.subject.verified) y verifica la firma HMAC antes de procesarlo.