Create Provider
Creates a new provider record. Providers must be created before they can be enrolled with payers.
/providersThis endpoint allows you to create a provider record with the details required for transaction enrollment.
- Call this endpoint with the provider's details.
- The endpoint returns the created provider record, including the provider
id, which you'll need when creating enrollment requests.
You can now add the provider to one or more transaction enrollment requests.
All providers you create through this endpoint are available on the Providers page for you to review and manage.
Contact information
You can add one or more contacts to a provider record. Contacts on the provider record are for convenience - they allow the Stedi portal to prepopulate contact information options when you create enrollment requests manually. However, they aren't automatically added to enrollment requests you submit through the portal or API, and you can submit different contact information in enrollment requests for the provider as needed.
When adding a contact, follow these best practices:
- The provider's name and address should match exactly what payers have on file. Some payers reject enrollment requests with addresses that don't match their records. Remember that you can add different contacts to enrollment requests for specific payers if needed.
- However, you may want to set the phone number or email to your own contact details. Do this when you want the payer to contact you about the enrollment instead of the provider directly.
A Stedi API Key for authentication.
Body
^[0-9]{10}$The provider's National Provider Identifier (NPI). This is a 10-digit number that is unique to the provider.
Each provider record must have a unique npi and taxId combination. For example, you can create two provider records with the same npi as long as they have different values for taxId.
The type of tax ID. Can be either an EIN - Employer Identification Number, or an SSN - Social Security Number.
EINSSN^\d{9}$The provider's tax ID, as specified by taxIdType. This identifier has to be provided without any separators, such as dashes or spaces. For example 111-22-3333 is invalid but 111223333 is valid.
Each provider record must have a unique npi and taxId combination. For example, you can create two provider records with the same taxId as long as they have different values for npi.
The provider's business name. This is typically the provider's practice name, such as Dental Associates, LLC, but it can also be the provider's first and last name.
The contact information for the provider. This is where the payer will send communications about the enrollment, if needed.
- Either
organizationNameorfirstNameandlastNameare required. - The name and address should match exactly what the payer has on file for the provider. Some payers reject enrollment requests with addresses that don't match their records.
- If you're submitting enrollment requests on a provider's behalf, you may want to set the phone number and email to your own contact details. Do this when you want the payer to contact you about the enrollment status instead of the provider directly.
Response
CreateProvider 200 response
A unique identifier Stedi assigns to this provider.
The date and time Stedi created the provider record.
The date and time Stedi last updated the provider record.
^[0-9]{10}$The provider's National Provider Identifier (NPI). This is a 10-digit number that is unique to the provider.
Each provider record must have a unique npi and taxId combination. For example, you can create two provider records with the same npi as long as they have different values for taxId.
The type of tax ID. Can be either an EIN - Employer Identification Number, or an SSN - Social Security Number.
EINSSN^\d{9}$The provider's tax ID, as specified by taxIdType. This identifier has to be provided without any separators, such as dashes or spaces. For example 111-22-3333 is invalid but 111223333 is valid.
Each provider record must have a unique npi and taxId combination. For example, you can create two provider records with the same taxId as long as they have different values for npi.
The provider's business name. This is typically the provider's practice name, such as Dental Associates, LLC, but it can also be the provider's first and last name.
The contact information for the provider. This is where the payer will send communications about the enrollment, if needed.
- Either
organizationNameorfirstNameandlastNameare required. - The name and address should match exactly what the payer has on file for the provider. Some payers reject enrollment requests with addresses that don't match their records.
- If you're submitting enrollment requests on a provider's behalf, you may want to set the phone number and email to your own contact details. Do this when you want the payer to contact you about the enrollment status instead of the provider directly.
curl --request POST \ --url "https://enrollments.us.stedi.com/2024-09-01/providers" \ --header "Authorization: <api_key>" \ --header "Content-Type: application/json" \ --data '{ "name": "BDQ Dental Inc", "npi": "1999999992", "taxIdType": "EIN", "taxId": "555123456", "contacts": [ { "firstName": "Bob", "lastName": "Dentist", "email": "bob@fortdental.center", "phone": "5551232135", "streetAddress1": "123 Some Str", "city": "Chevy Chase", "zipCode": "20814", "state": "MD" }, { "firstName": "Tom", "lastName": "Dentist", "email": "tom@fortdental.center", "phone": "5551232133", "streetAddress1": "123 Some Str", "city": "Chevy Chase", "zipCode": "20814", "state": "MD" } ] }'{
"createdAt": "2024-11-18T17:39:52.406Z",
"id": "10334e76-f073-4b5d-8984-81d8e5107857",
"name": "BDQ Dental Inc",
"npi": "1999999992",
"taxId": "555123456",
"taxIdType": "EIN",
"updatedAt": "2024-11-18T17:39:52.406Z",
"contacts": [
{
"organizationName": "",
"firstName": "Bob",
"lastName": "Dentist",
"email": "bob@fortdental.center",
"phone": "5551232135",
"streetAddress1": "123 Some Str",
"city": "Chevy Chase",
"zipCode": "20814",
"state": "MD"
},
{
"organizationName": "",
"firstName": "Tom",
"lastName": "Dentist",
"email": "tom@fortdental.center",
"phone": "5551232133",
"streetAddress1": "123 Some Str",
"city": "Chevy Chase",
"zipCode": "20814",
"state": "MD"
}
]
}