Kareo · Example Payload

Kareo Create Patient Example

Example SOAP API request body for the CreatePatient operation. In production, this would be serialized as an XML SOAP envelope.

HealthcareMedical SoftwareEHRPractice ManagementMedical BillingPatient SchedulingClinical DataInsurance EligibilityHIPAA

Kareo Create Patient Example is an example object payload from Kareo, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summarydescriptionRequestHeaderPatient

Example Payload

Raw ↑
{
  "summary": "Create a new patient in Kareo",
  "description": "Example SOAP API request body for the CreatePatient operation. In production, this would be serialized as an XML SOAP envelope.",
  "RequestHeader": {
    "CustomerKey": "ABC123XYZ",
    "User": "admin@mypractice.com",
    "Password": "S3cur3P@ssw0rd"
  },
  "Patient": {
    "FirstName": "Jane",
    "LastName": "Doe",
    "DateOfBirth": "1985-03-15",
    "Gender": "Female",
    "Email": "jane.doe@example.com",
    "HomePhone": "555-123-4567",
    "MobilePhone": "555-987-6543",
    "Address": {
      "Address1": "123 Main St",
      "Address2": "Apt 4B",
      "City": "Los Angeles",
      "State": "CA",
      "ZipCode": "90001",
      "Country": "US"
    },
    "PatientExternalId": "EXT-PT-9876"
  }
}