POST
/
providers
/
{providerId}
curl --request POST \
  --url https://enrollments.us.stedi.com/2024-09-01/providers/{providerId} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "TEST Updated Dental Inc",
  "contacts": [
    {
      "firstName": "Test",
      "lastName": "Tester",
      "email": "bob@fortdental.center",
      "phone": "555-123-213342",
      "streetAddress1": "123 Some Str",
      "city": "A City",
      "zipCode": "12345",
      "state": "WA"
    }
  ]
}'
{
  "createdAt": "2024-11-18T17:39:52.406Z",
  "id": "10334e76-f073-4b5d-8984-81d8e5107857",
  "name": "TEST Updated Dental Inc",
  "npi": "1999999999",
  "taxId": "111222333",
  "taxIdType": "EIN",
  "updatedAt": "2024-11-19T19:24:33.246Z",
  "contacts": [
    {
      "organizationName": "",
      "firstName": "Test",
      "lastName": "Tester",
      "email": "bob@fortdental.center",
      "phone": "555-123-213342",
      "streetAddress1": "123 Some Str",
      "city": "A City",
      "zipCode": "12345",
      "state": "WA"
    }
  ]
}
This is a beta endpoint. We may make backwards incompatible changes.

This endpoint allows you to update information for an existing provider. For example, you may want to add an additional contact.

Please note:

  • Calling this endpoint completely overwrites the previous request record. You must provide all the information for the provider in the request, not just the properties you want to update.
  • Updating a provider record doesn’t affect associated enrollments that are in SUBMITTED, PROVISIONING or LIVE status. If you need to update the provider details for an enrollment with these statuses, contact support.

Authorizations

Authorization
string
header
required

A Stedi API Key for authentication.

Path Parameters

providerId
string
required

The Stedi-assigned identifier for the provider you want to update.

Body

application/json

Response

200
application/json
UpdateProvider 200 response

The response is of type object.