• API Hub
  • Search loading...

    API Hub

    Explore and Make use of Nationally Defined Messaging APIs

     

    Referrals

    Referrals HTML View.

    Referrals

    Section Code Section Name TPP EMIS INPS Microtest
    REF Referrals Yes Yes Yes Yes

    Purpose

    A list of all referrals related to a patient ordered by date descending (i.e. most recent date/time first).

    Date Horizon

    All relevant records SHALL be returned with-in Consumer supplied date range.

    Table Construction

    • Table header SHALL be “Referrals”.
    • Table columns SHALL be ordered left-to-right (1..N).
    • Table content SHALL NOT be truncated.
    • Table rows SHALL be ordered by date descending (i.e. most recent date/time first).

    Table Columns

    1. Date
      • the date of referral.
    2. From
    3. To
    4. Priority
    5. Details
      • longer human readable free-text details for the medication item.

    HTML View

    <div>
    	<h2>Referrals</h2>
    	<table>
    		<thead>
    			<tr>
    				<th>Date</th>
    				<th>From</th>
    				<th>To</th>
    				<th>Priority</th>
    				<th>Details</th>
    			</tr>
    		</thead>
    		<tbody>
    			<tr ng-repeat="item in items">
    				<td>{{item.date}}</td>
    				<td>{{item.from}}</td>
    				<td>{{item.to}}</td>
    				<td>{{item.priority}}</td>
    				<td>{{item.details}}</td>
    			</tr>
    		</tbody>
    	</table>
    </div>
    

    All content is available under the Open Government Licence v3.0, except where otherwise stated