DasLab documentation
  • What is DasLab?
  • DasLab Integrations
  • DasLab for developers
  • Webhook events
  • REST API
    • Locations
    • Products
    • Appointments
    • Patients
    • Transactions
    • Samples/Results
  • HL7 for labs
  • Docspring
  • Security center / updates
  • Developer Support
  • DasLab Guides
    • DasLab for partners
    • Set-up instructions
      • Setting up a provider/app
      • Setting up as a client
        • Software setup
        • Features descriptions
        • Training for clients
      • Setting up as a lab
        • Software setup
        • Features descriptions
        • Training for labs
      • Setting up a vaccination location
      • Training for vaccination
        • Setting up as a doctor / sampling location
          • Software setup
          • Features list
          • Training for samplers
    • Downloading a report of appointments and results
    • Trainings for partners
  • Ordering a test
Powered by GitBook
On this page

Was this helpful?

  1. REST API

Locations

You will often need your locationId to preform operations.

Get locations

GET https://api.daslab.app/orgs/:id/locations

This endpoint allows you to list your locations.

Path Parameters

Name
Type
Description

id

string

ID of of your organisation

Headers

Name
Type
Description

x-api-key

string

Authentication token

{
    "id": 1000,
    "orgId": 1001,
    "countryIso2": "DE",
    "type": "sampler",
    "name": "TEST sampler",
    "lat": "52.32133",
    "lng": "1.12331",
    ...
 }

PreviousREST APINextProducts

Last updated 4 years ago

Was this helpful?