- Facility
- Create Facility
Facility
Create Facility
Creates a Facility in Metriport where your patients receive care.
/medical/v1/facility
curl --request POST \
--url https://api.metriport.com/medical/v1/facility \
--header 'x-api-key: AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"npi": "string",
"address": Address
}'
Body
The name of your Facility. This is the actual address where a patient will recieve care (can be
virtual) - for example Care Facility, LLC
.
The 10 digit National Provider Identifier (NPI) that will be used to make requests on behalf of the Facility.
The Taxpayer Identification Number (TIN) of the Facility.
Whether or not this Facility is currently active - this is usually true
.
Response
The ID assigned to this Facility. This ID will be used to uniquely identify this Facility in medical documents.
The name of your Facility. This is the actual address where a patient will recieve care (can be
virtual) - for example Care Facility, LLC
.
The 10 digit National Provider Identifier (NPI) that will be used to make requests on behalf of the Facility.
The Taxpayer Identification Number (TIN) of the Facility.
Whether or not this Facility is currently active - this is usually true
.
import { Metriport, USState } from "@metriport/api";
const metriportClient = new MetriportMedicalApi("YOUR_API_KEY");
const facility = await metriportClient.createFacility({
name: "Care Facility, LLC",
npi: "1234567891",
tin: "12-3456789",
active: true,
address: {
addressLine1: "2261 Market Street",
addressLine2: "#4818",
city: "San Francisco",
state: USState.CA,
zip: "94114",
country: "USA",
},
});
{
"id": "2.16.840.1.113883.3.666.123",
"name": "Care Facility, LLC",
"npi": "1234567891",
"tin": "12-3456789",
"active": true,
"address": {
"addressLine1": "2261 Market Street",
"addressLine2": "#4818",
"city": "San Francisco",
"state": "CA",
"zip": "94114",
"country": "USA"
}
}
curl --request POST \
--url https://api.metriport.com/medical/v1/facility \
--header 'x-api-key: AUTH_VALUE' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"npi": "string",
"address": Address
}'
import { Metriport, USState } from "@metriport/api";
const metriportClient = new MetriportMedicalApi("YOUR_API_KEY");
const facility = await metriportClient.createFacility({
name: "Care Facility, LLC",
npi: "1234567891",
tin: "12-3456789",
active: true,
address: {
addressLine1: "2261 Market Street",
addressLine2: "#4818",
city: "San Francisco",
state: USState.CA,
zip: "94114",
country: "USA",
},
});