Get started
API Reference
- Patient
- Contact
- Service
- Location
- Practitioner
- Appointment
- Support activity
- Support item
- Invoice
- Payment method
- Waitlist
- Screener
- Patient form
- Case
- Availability
- Payment
- Custom field
Patient
Update single patient
Update single patient
Copy
curl --request PUT \
--url https://api.splose.com/v1/patients/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstname": "Harry",
"lastname": "Potter",
"email": "harry@hogwarts.edu",
"sex": "Male",
"genderIdentity": "Man",
"alert": "He knows magic",
"birthdate": "1996-07-30T00:00:00.000Z",
"timezone": "Australia/Adelaide",
"city": "Adelaide",
"state": "SA",
"postalCode": "5000",
"country": "Australia",
"phoneNumbers": [
{
"type": "Mobile",
"code": "+61",
"phoneNumber": "401234567"
}
],
"privacyPolicy": "Accepted",
"healthFund": {
"name": "AHM",
"membershipNumber": "12345678",
"patientNumber": "1",
"cardIssueNumber": "01"
},
"ndisNumber": "430123456",
"ndisInfo": {
"diagnosis": "Foot Injury",
"nomineeEmail": "nominee@email.com",
"fundManagement": "Plan-managed",
"nomineeLastName": "Clark",
"nomineeFirstName": "Chris",
"nomineeMobileCode": "+61",
"nomineeMobileNumber": "433555111",
"startDate": "2024-02-09T00:00:00.000Z",
"endDate": "2024-02-18T00:00:00.000Z"
},
"medicareNum": "4444444444",
"irn": "1",
"veteransFileNumber": "",
"emergencyContactNumber": "0412345678",
"emergencyContactName": "Quentin Neely",
"emergencyContactRelationship": "Brother",
"patientTags": [
"Self-managed"
],
"customFields": [
{
"name": "<string>",
"value": "<string>"
}
],
"createdAt": "2023-07-30T09:00:00.000Z",
"updatedAt": "2023-07-30T09:00:00.000Z"
}'
Copy
1
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Required range:
x > 0
Example:
1
Body
application/json
Response
200 - text
Return 1 on success
The response is of type enum<number>
.
Available options:
1
Copy
curl --request PUT \
--url https://api.splose.com/v1/patients/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"firstname": "Harry",
"lastname": "Potter",
"email": "harry@hogwarts.edu",
"sex": "Male",
"genderIdentity": "Man",
"alert": "He knows magic",
"birthdate": "1996-07-30T00:00:00.000Z",
"timezone": "Australia/Adelaide",
"city": "Adelaide",
"state": "SA",
"postalCode": "5000",
"country": "Australia",
"phoneNumbers": [
{
"type": "Mobile",
"code": "+61",
"phoneNumber": "401234567"
}
],
"privacyPolicy": "Accepted",
"healthFund": {
"name": "AHM",
"membershipNumber": "12345678",
"patientNumber": "1",
"cardIssueNumber": "01"
},
"ndisNumber": "430123456",
"ndisInfo": {
"diagnosis": "Foot Injury",
"nomineeEmail": "nominee@email.com",
"fundManagement": "Plan-managed",
"nomineeLastName": "Clark",
"nomineeFirstName": "Chris",
"nomineeMobileCode": "+61",
"nomineeMobileNumber": "433555111",
"startDate": "2024-02-09T00:00:00.000Z",
"endDate": "2024-02-18T00:00:00.000Z"
},
"medicareNum": "4444444444",
"irn": "1",
"veteransFileNumber": "",
"emergencyContactNumber": "0412345678",
"emergencyContactName": "Quentin Neely",
"emergencyContactRelationship": "Brother",
"patientTags": [
"Self-managed"
],
"customFields": [
{
"name": "<string>",
"value": "<string>"
}
],
"createdAt": "2023-07-30T09:00:00.000Z",
"updatedAt": "2023-07-30T09:00:00.000Z"
}'
Copy
1
Assistant
Responses are generated using AI and may contain mistakes.