post https://app.staging.rohealth.ng/api/external/employer
This page will help you get started with Create Partner Company.
Staging url - https://app.staging.rohealth.ng/api/external/special/employer
POST request
Authorisation: No API Key is needed
Below is the request body payload.
N.B:
Size options (1-10, 11-50, 51-100, 101-500)
Designation Options ( Human Resource, Customer success, CEO/MD/COO, Accountant, Product Manager/Owner, Content Manager, Administrative officer, IT/Engineer, Others)
{ "mobile": "String(required)",
"email": "String(required)",
"first_name": "String(required)",
"last_name": "String(required)",
"company": "String(required)",
"designation": "String(required)",
"size": "String(required)",
"password": "String(required)"
}
Below is a sample request body payload.
{ "mobile": "08127334444",
"email": "[email protected]",
"first_name": "Testpartner",
"last_name": "Account19",
"company": "Tatal Ventures",
"designation": "CEO",
"size": "1-10",
"password": "Password123"
}
Below is a sample response body.
{
"status": {
"code": 100,
"desc": "Registration Successful"
},
"entity": {
"partner_id": "8d533116-02fd-4418-a520-3bf0ba38c996",
"first_name": "Testpartner",
"last_name": "Account19",
"company": "Tatal Ventures",
"email": "[email protected]"
},
"meta": null
}