Medicare Secondary Payer - MSP
Medicare Secondary Payer - MSP feature will allow the user to retrieve, modify or delete the MSP qualifier which is required to bill any secondary claim to Medicare. MSP Reference feature allows the user to be able to retrieve, set, and delete the Medicare Secondary Payer (MSP) qualifier associated with an appointment.
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Endpoints
- Primary
- Reference
Get appointment-specific MSP qualifier
GET
/v1/{practiceid}/appointments/{appointmentid}/mspq
Retrieves the Medicare Secondary Payer qualifier of a given appointment.
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
appointmentid
integer
appointmentid
Output Parameters
Expand all
mspinsurancetypeid
integer
MSP insurance type id and qualifier
mspinsurancetypename
string
MSP insurance type name
Example Code
Update appointment-specific MSP qualifier
PUT
/v1/{practiceid}/appointments/{appointmentid}/mspq
Modifies the Medicare Secondary Payer qualifier of a given appointment.
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
appointmentid
integer
appointmentid
Content-Type
string
Content type of the payload
Output Parameters
Expand all
errormessage
string
If success is not true, this will detail the error that occurred.
success
string
Returns true if the call to set the qualifier for the appointment was successful.
Example Code
Delete appointment-specific MSP qualifier
DELETE
/v1/{practiceid}/appointments/{appointmentid}/mspq
Deletes the Medicare Secondary Payer qualifier of a given appointment.
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
appointmentid
integer
appointmentid
Output Parameters
Expand all
errormessage
string
If success is not true, this will detail the error that occurred.
success
string
Returns true if the call to set the qualifier for the appointment was successful.
Example Code
Get list of appointment-specific MSP qualifiers
GET
/v1/{practiceid}/mspinsurancetypes
Retrieves a list of valid Medicare Secondary Payer insurance (MSP) types to be used for the MSP Qualifier
Was this information helpful?
Yes | No
Thank you for your feedback!
What went wrong?
Incomplete or incorrect information |
Irrelevant Content
| Others
Submit
Input Parameters
Expand all❙ required
practiceid
integer
practiceid
departmentid
integer
The department id
limit
integer
Number of entries to return (default 100, max 5000)Please note that this endpoint has a different default than normal.
offset
integer
Starting point of entries; 0-indexed
Output Parameters
Expand all
mspinsurancetypeid
integer
MSP insurance type id
mspinsurancetypename
string
Name of the MSP insurance type
Example Code