School Fees Policy
Initiate School Fees Policy
This method initiates the creation of a School Fees Insurance Policy.
POST
https://sandbox.insurpass.com/api/merchant/initiate_school_fee_policy
Headers
Authorization*
String
Bearer {$secret-key}/{$api-key}
Content-Type*
String
application/json
Request Body
id*
String
id from the product, this should be gotten from the product lists
last_name*
String
Principal Customer's surname - Ezedibia
phone_number*
numeric|digits:11
Principal Customer's phone number - 08102223475 (digits:11)
email*
Principal Customer's email address -email@domain.com
gender*
String
Principal Customer's gender - female, male
trustee_first_name*
String
First name of the trustee - Favour
trustee_last_name*
String
Last name of the Trustee - Valentia
trustee_phone_number*
numeric|digits:11
Phone number of the truste - 09800098756
trustee_email*
Trustee's email address -email@domain.com
frequency*
String
frequency_type*
String
product_id*
String
beneficiary_lastname
String
The lastname of the Beneficiary - Hugh
beneficiary_firstname
String
The firstname of the Beneficiary - Jackman
beneficiary_address
String
The address of the Beneficiary- No 1, 19th Avenue.
beneficiary_gender
String
The gender of the Beneficiary- Male/Female.
beneficiary_dob
String
The Date of Birth of the Beneficiary 1999-01-01
bbeneficiary_phone_number
Number
The phone number of the Beneficiary - 08102223475 (digits:11)
beneficiary_email
The email of the Beneficiary - email@domain.com
beneficiary_institution_name
String
The Educational Institution of the Beneficiary - Lagos State University
beneficiary_institution_address
String
The Educational Institution's address of the Beneficiary - No 1, 19th Avenue.
id_url
String
The Educational Institution's url of the Beneficiary - http://lagos.edu.ng
id_type
String
The ID type of the Beneficiary - voters_card
id_number
String
The ID number of the Beneficiary - t353363534
{
"success":true,
"data":{
"token":"IDP163446435012295714"
},
"response_message":"School fee policy initiated successfully",
"response_code":""
}
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://sandbox.insurpass.com/api/merchant/initiate_school_fee_policy',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"first_name": "milly-Bobby",
"last_name": "Brown",
"phone_number": "09076567875",
"email": "email@gmail.com",
"gender": "male",
"product_id": 2,
"trustee_first_name": "fsfs",
"trustee_last_name": "Sala",
"trustee_phone_number" : "08031543234",
"trustee_email" : "salamikolawole@gmail.com",
"frequency_type": "monthly",
"frequency" : 30,
"beneficiary_firstname":"Salami",
"beneficiary_lastname":"Kolawole",
"beneficiary_address":"12 Akinsanmi street Obanikoro",
"beneficiary_gender":"male",
"beneficiary_dob":"1995-04-12",
"beneficiary_phone_number":"08034763234",
"beneficiary_email":"salamikolawole@gmail.com",
"beneficiary_institution_name":"Lagos State University",
"beneficiary_institution_address":"Lagos Ojo",
"id_number":"t353363534",
"id_url":"http://lagos.edu.ng",
"id_type":"voters_card"
}',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer {{SECRETKEY}}',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Verify School Fees Policy
This endpoints sends a token that verifies the creation of a School Fee Insurance policy.
POST
https://sandbox.insurpass.comapi/merchant/verify_school_fee_policy
Headers
Authorization*
String
Bearer {$secret-key}/{$api-key}
Content-Type*
String
application/json
Request Body
token*
String
Note that after 15 minutes, the token expires and you will need to reinitiate
{
"success": true,
"response_message": "School fee policy was created successfully",
"response_code": "",
"data": {
"policy_number": "UIC/RE/INP/SFP/20102022/81671",
"trustee_fullname": " fsfs Sala ",
"trustee_phone_number": "08031543234",
"trustee_email": "salamikolawole@gmail.com",
"frequency_type": "monthly",
"frequency": 30,
"status": true,
"product_code": "SFP",
"deleted_at": null,
"created_at": "2022-10-20T11:25:19.000000Z",
"updated_at": "2022-10-20T11:25:40.000000Z",
"start_date": "2022-10-20T11:25:39.997124Z",
"end_date": "2023-10-19T11:25:39.997143Z"
}
}
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://sandbox.insurpass.com/api/merchant/verify_school_fee_policy',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"token": "IDP1664732927341151853"
}',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer {{SECRETKEY}}',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
List All School Fees Policies
This endpoint returns a list of all the school fees insurance policies
GET
https://sandbox.insurpass.comapi/merchant/get_merchant_shop_insure_policies
Headers
Authorization*
String
Bearer {$secret-key}/{$api-key}
Content-Type*
String
application/json
{
"success":true,
"data":[
{
"id":"15",
"trustee_first_name":"Salami",
"trustee_last_name":"Oluwole",
"trustee_phone_number":"08034543543",
"trustee_email":"salamikolawole989@gmail.com",
"frequency":12,
"frequency_type":"yearly",
"status":"activated",
"policy_number":"TG52622977"
}
],
"response_message":"School fee policies retrieved successfully",
"response_code":""
}
<?php
$curl = curl_init() ;
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://sandbox.insurpass.com/api/merchant/get_merchant_shop_insure_policies',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer {{SECRETKEY}}'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
School Fees Policy Details
This endpoint returns an object containing a single School Fees Policy
POST
https://sandbox.insurpass.com/api/merchant/school_fee_policy_details
Headers
Authorization*
String
Bearer {$secret-key}/{$api-key}
Content-Type*
String
application/json
Request Body
Policy_number*
String
The unique number that identifies the purchased insurance policy - IN98570819
{
"success":true,
"data":{
"trustee_first_name":"Salami",
"trustee_last_name":"Oluwole",
"trustee_phone_number":"08034543543",
"trustee_email":"salamikolawole989@gmail.com",
"frequency":12,
"frequency_type":"yearly",
"status":"activated",
"policy_number":"TG52622977",
"start_date":"2021-10-16"
},
"response_message":"Device Policy retrieved successfully",
"response_code":""
}
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://sandbox.insurpass.com/api/merchant/school_fee_policy_details',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{"policy_number":"UIC/RE/INP/SI/30092022/79187"}',
CURLOPT_HTTPHEADER => array(
'Authorization: Bearer {{SECRETKEY}}',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
Last updated
Was this helpful?