Change an existing provider's address

Change an existing address associated with the specified provider.

Request
path Parameters
providerId
required
string <uuid>
id
required
string <uuid>
Request Body schema: application/json
state
required
string

Abbreviation of the state in which the city is located.

Enum: "AL" "AK" "AZ" "AR" "CA" "CO" "CT" "DE" "DC" "FL" "GA" "HI" "ID" "IL" "IN" "IA" "KS" "KY" "LA" "ME" "MD" "MA" "MI" "MN" "MS" "MO" "MT" "NE" "NV" "NH" "NJ" "NM" "NY" "NC" "ND" "OH" "OK" "OR" "PA" "RI" "SC" "SD" "TN" "TX" "UT" "VT" "VA" "WA" "WV" "WI" "WY" "AS" "GU" "MP" "PR" "VI"
zipCode
required
string non-empty

The postal code associated with the address.

city
required
string non-empty

The city in which the address is located.

addressLine1
required
string non-empty

The street address.

addressLine2
string

The secondary address information.

type
required
string

The type of address.

Enum: "Unspecified" "Home" "Work"
Responses
200

Success

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

put/providers/{providerId}/info/addresses/{id}
Request samples
application/json
{
  • "state": "AL",
  • "zipCode": "string",
  • "city": "string",
  • "addressLine1": "string",
  • "addressLine2": "string",
  • "type": "Unspecified"
}
Response samples
application/json
{
  • "state": "AL",
  • "zipCode": "string",
  • "city": "string",
  • "addressLine1": "string",
  • "addressLine2": "string",
  • "type": "Unspecified",
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08"
}