Delegate ======== A delegate is a user that interacts with Satellite Tag devices, usually through a NFC chip or a barcode. Examples of interactions can be: - the delegate registers at a registration desk by showing their barcode and/or providing some personal details; - the delegate scans their wristband or lanyard against a mobile phone when entering a room to attend a session; - the delegate scans their wristband or lanyard against a mobile phone after taking a picture to receive their personalised content in their mobile site companion; - two delegates scan their wristband or lanyard against a tablet to connect with each other and exchange their virtual business card. All these interactions involve: 1. a **unique code** that identifies the delegate, it's either a NFC chip or a barcode/QR code, but it can be the raw ID of the delegate 2. a **target device**, usually a session, a sponsor or a UHF reader, but can be literally any registered *device* (the word device is used here as a generic term that encompass all different objects the delegate can interact with, see :doc:`/basic_concepts` for more details) 3. a **recording device** (or **app**), it can be a mobile phone, a registration station or any other digital device consuming our REST API. Some simple interactions are *check-ins* and *joins* and complex interactions are for example *leads* and *connections* because they involve extra steps. Delegate Flags -------------- Flags are a simple way of tracking some specific choices or interactions made or triggered by the delegate. Flags should always be stored lowercase. The following list includes only the core flags: +---------+------------------------------------------------------------------------------------------------------------+ | Flags | Meaning | +=========+============================================================================================================+ | a,b,c,d | Reserved for instance specific purposes | +---------+------------------------------------------------------------------------------------------------------------+ | e | The delegate has opened an email sent by Tag | +---------+------------------------------------------------------------------------------------------------------------+ | f | The delegate has sent their feedback | +---------+------------------------------------------------------------------------------------------------------------+ | k | The delegate is a Spark customer | +---------+------------------------------------------------------------------------------------------------------------+ | p | The delegate has made their profile public for other delegate to see | +---------+------------------------------------------------------------------------------------------------------------+ | s | The delegate has seen the splash screen page/pop-up and answered any questions in it | +---------+------------------------------------------------------------------------------------------------------------+ | v | The delegate has visited their mobile site | +---------+------------------------------------------------------------------------------------------------------------+ Flags from ``a`` to ``d`` are reserved for instance specific purposes. .. include:: /rest_api/delegate/cget.inc.rst .. _rest_api_get_delegate_idtype_id: GET /delegate/{idType}:{id} --------------------------- Gets a specific delegate. All available properties will be shown. Available identifier types are: ``id``, ``rfid``, ``barcode``, ``externalId``, ``uhfId``. .. code-block:: text GET /delegate/id:820.json GET /delegate/rfid:1234567890.json GET /delegate/barcode:9876543210.json GET /delegate/externalId:337cb1d6-ec42-417b-b9b6-596458c679bc.json GET /delegate/uhfId:E2000017571701072790046D.json PATCH /delegate/{idType}:{id} ----------------------------- Patches a delegate. All properties provided in the request will be updated to the given value. .. note:: There is a notable exception: a unique code cannot be `unset`. That is if you try and set the ``rfid`` property to ``null`` for example, nothing will happen. Unique codes can only be replaced through this API. Unique codes are: ``rfid``, ``barcode`` and ``externalId``. The ``id`` of a delegate can never change. POST /delegate/new ------------------ Creates a new delegate. Example request: .. code-block:: text POST /delegate/new .. code-block:: json { "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "phone": "+123456789", "jobTitle": "Dev", "company": "Acme Ltd", "barcode": "299281713529" } Example response: .. code-block:: json { "barcode": "299281713529", "id": 29, "firstName": "John", "lastName": "Doe", "email": "john.doe@example.com", "phone": "+123456789", "jobTitle": "Dev", "company": "Acme Ltd", "sources": [ "api" ], "createdAt": "2018-03-13T23:31:32+00:00", "updatedAt": "2018-03-13T23:31:32+00:00" } DELETE /delegate/{idType}:{id} ------------------------------ Deletes a delegate. This will soft-delete a delegate from the system, hard deletion is available only from the :doc:`/internal/control_room/index`. Trying and getting or patching a deleted delegate will result in a ``404 Not Found`` error. GET /delegate/cache ------------------- Gets a list of all delegates for client side caching. You can specify a set of fields you want to cache and only those will be returned. The delegate's ``id`` will always be returned, even if you don't ask for it. If you add the ``If-Modified-Since`` header to your request, only delegates created or updated after the given date and time will be returned. The format of ``If-Modified-Since`` header can be `any format currently accepted by PHP`_. .. _`any format currently accepted by PHP`: http://php.net/manual/en/datetime.formats.php .. note:: This method supports pagination. Use limit and offset to paginate returned results. The defaults if no limit or offset are provided are limit=5000 and offset=0 GET /delegate/list?offset=0&limit=5000 or /delegate/cache?offset=0&limit=5000 The total result set count is returned in all responses with the HTTP header: X-Total-Count. Links to the next or previous page are provided in the HTTP header links block as well .. code-block:: text Link: ; rel="next", ; rel="last", ; rel="first", ; rel="prev", POST /delegate/send-comm ------------------------ Sends an SMS and/or email to a delegate. The response is an object with ``sms_sent`` and ``email_sent`` properties that tell if the communication was sent successfully or not. Common reasons for a comm not to be send are: - backend settings: communications to delegates can be turned off - invalid recipient: the email or phone number don't match the requirements - gateway is down: ie Modica or SendGrid are unavailable or the credentials are wrong Example request: .. code-block:: json { "sms_name": "Welcome", "email_id": 8, "delegate_id": 4 } Example response: .. code-block:: json { "sms_sent": true, "email_sent": false }