> ## Documentation Index
> Fetch the complete documentation index at: https://plivo.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Conference Calling with a PIN

> Create secure conference calls with PIN-based access control

## Overview

This guide shows how to create and configure conference calls with a PIN to let multiple people securely connect to a single call. Only participants who have a specified passcode can enter the conference call.

You can make conference calls either by using our PHLO visual workflow builder or our APIs and XML documents. Follow the instructions in one of the tabs below.

<Tabs>
  <Tab title="Using XML">
    Here’s how to receive a call on a Plivo number and add the caller to a conference call named “demo” after the caller enters a valid PIN.

    <h2 id="xml-how-it-works"> How it works</h2>

    <Frame>
      <img src="https://mintcdn.com/plivo/-VVFcM3g7XHd8wTl/images/pin.png?fit=max&auto=format&n=-VVFcM3g7XHd8wTl&q=85&s=718b09c4e658170b679d68a1561b0cec" alt="" width="1446" height="774" data-path="images/pin.png" />
    </Frame>

    <h2 id="xml-prerequisites">Prerequisites</h2>

    To get started, you need a Plivo account —  [sign up](https://cx.plivo.com/signup) with your work email address if you don’t have one already. You must have a voice-enabled Plivo phone number to receive incoming calls; you can rent numbers from the [Numbers](https://cx.plivo.com/phone-numbers) page of the Plivo console, or by using the [Numbers API](/numbers/). If this is your first time using Plivo APIs, follow our instructions to [set up a Node.js development environment](/sdk/server/set-up-node-dev-environment-api-xml-voice/) and a web server and safely expose that server to the internet.

    <h2 id="xml-create-an-express-server-to-implement-a-conference-call-with-pin">Create an Express server to implement a conference call with PIN</h2>

    Create a file called `conference_call.js` and paste into it this code.

    ```js theme={null}
    var plivo = require('plivo');
    var express = require('express');
    var bodyParser = require('body-parser');
    var app = express();

    app.use(bodyParser.urlencoded({extended: true}));
    app.set('port', (process.env.PORT || 5000));

    // Message that Plivo reads when the caller dials in
    var WelcomeMessage = "Welcome to the demo. Press 1234 to join the conference";
    // Message that Plivo reads when the caller does nothing
    var NoinputMessage = "Sorry, I didn't catch that. Please hang up and try again";
    // Message that Plivo reads when the caller enters an invalid number.
    var WronginputMessage = "Sorry, that's an invalid PIN";

    app.post('/conference/', function(request, response) {
      var r = plivo.Response();
      var getinput_action_url, params, get_input;
      getinput_action_url = request.protocol + '://' + request.headers.host + '/conference/firstbranch/';
      params = {
            'action': getinput_action_url,
            'method': 'POST',
            'inputType': 'dtmf',
            'digitEndTimeout': '5',
            'numDigits': '5',
            'redirect': 'true',
      };
      get_input = r.addGetInput(params);
      get_input.addSpeak(WelcomeMessage);
      r.addSpeak(NoinputMessage);

      console.log(r.toXML());
      response.set({'Content-Type': 'text/xml'});
      response.send(r.toXML());
    });

    app.post('/conference/firstbranch/', function(request, response) {
      var r = plivo.Response();
      var getinput_action_url, params, get_input;
      var digit = request.query.Digits;
      console.log(digit);
      if (digit === '1234') {
        var params = {
            'startConferenceOnEnter': "true",
            'endConferenceOnExit': "true"
        };
        var conference_name = "demo";
        r.addConference(conference_name, params);
      } else {
        r.addSpeak(WronginputMessage);
      }

      console.log(r.toXML());
      response.set({'Content-Type': 'text/xml'});
      response.send(r.toXML());
    });

    app.listen(app.get('port'), function() {
        console.log('Node app is running on port', app.get('port'));
    });
    ```

    Save the file and run it.

    ```shell theme={null}
    $ node conference_call.js
    ```

    You should see your basic server application in action at [http://localhost:3000/conference/](http://localhost:3000/conference/).

    <h2 id="xml-create-a-plivo-application-for-the-conference-call">Create a Plivo application for the conference call</h2>

    Associate the Express application you created with Plivo by creating a Plivo application. Visit Voice > [Applications](https://cx.plivo.com/xml-applications) in the Plivo console and click on **Add New Application**, or use Plivo’s [Application API](/account/api/application/#create-an-application).

    Give your application a name — we called ours `Conference Call`. Enter the server URL you want to use (for example `https://<yourdomain>.com/conference/`) in the `Answer URL` field and set the method to `POST`.  Click **Create Application** to save your application.

    <Frame>
      <img src="https://mintcdn.com/plivo/Ac6PoKJHHxDx1U63/images/create_conferenceapp.png?fit=max&auto=format&n=Ac6PoKJHHxDx1U63&q=85&s=a6c167b5412afcafb32553ff7a92e921" alt="" width="2874" height="1612" data-path="images/create_conferenceapp.png" />
    </Frame>

    <h2 id="xml-assign-a-plivo-number-to-your-application">Assign a Plivo number to your application</h2>

    Navigate to the [Numbers](https://cx.plivo.com/phone-numbers) page and select the phone number you want to use for this application.

    From the Application Type drop-down, select `XML Application`.

    From the Plivo Application drop-down, select `Conference Call` (the name we gave the application).

    Click **Update Number** to save.

    <Frame>
      <img src="https://mintcdn.com/plivo/Ac6PoKJHHxDx1U63/images/assign_conferencecall.png?fit=max&auto=format&n=Ac6PoKJHHxDx1U63&q=85&s=f948b3473a32c76755cad64e9bd4ada8" alt="" width="2878" height="1622" data-path="images/assign_conferencecall.png" />
    </Frame>

    <h2 id="xml-test">Test</h2>

    Make a call to your Plivo number. You should be prompted for a PIN, then placed into a conference after PIN validation.
  </Tab>
</Tabs>
