Param Guide
Structuring LAM Queries for Param
These forms need precise data formats and must pass strict validations. To maximize action success and avoid failures, follow these guidelines carefully.
API Request Structure
To interact with Param by Logiciels Cx, your request must include the following fields:
integration_id
: This specifies the type of response, such as filling out a medical form.properties
: This contains adata
field, which is an array of objects representing individual form entries. A maximum of 15 data objects are recommended per request.
Example API Request
Data Format Guidelines
Each object within the data
field must follow a specific schema, depending on the form you’re filling out. Below are some examples of the types of data you may need to include.
Entry Type: With Person
Example: With HIN (Health Identification Number)
For cases where a person has a HIN, you should include detailed medical and event data. Here’s the schema for an entry with HIN:
Example: Without HIN
For entries where a person does not have a HIN, the RecordNumber
or other identifying information should be provided. Example schema:
Example: Without HIN and RecordNumber
For entries where a person does not have a HIN and RecordNumber identifying information like PersonType
and IDNumber
should be provided. Example schema:
Entry Type: Without Person
Example
If no person is involved in the form, the People
field should be left as an empty array, like this:
Entry Type: With Multiple Autoline Records
Example
Multiple Autoline
can be provided for a single entry, like this:
Validation and Rejection of Entries
If your request contains more than 15 objects in the data
array, the request will fail, and the rejected entries will be returned in the data.properties.failed
field of the response. Make sure to limit your requests to 15 objects per submission.
Ensure all data follows the correct format and passes the validations required by the Param medical system. Incorrect data or formats will result in rejected requests.
By following these guidelines, you ensure that your API requests for the Param integration meet all the necessary standards and validations required by medical service websites.
Was this page helpful?