Hi,
I’m working on creating a contractor user in NERM through APIs using the profile endpoint. Currently, we have workflows set up in NERM and enter data manually into the forms, which creates both the personal and assignment profiles. I now want to automate this process in ISC by retrieving user data and making API calls to the NERM endpoints.
Before building the automation workflow in ISC, I want to test it in Postman. I used the following JSON body in the create profile request, assuming Id, uid, and person_id would be auto-generated. However, I received this error:
{
“error”: “param is missing or the value is empty: profile”
}
Here’s the JSON I tried:
{
“name”: “ABC”,
“profile_type_id”: “def48fcf-dcbd-48a5-bd2b-ac137cf48117”,
“status”: “Active”,
“id_proofing_status”: “pending”,
“attributes”: {
“assignment_rr_person”: “ABC”,
“email_address”: “ABC email”,
“first_name”: “A”,
“last_name”: “BC”,
“user_name_ne_attribute”: “ABC”
}
}
let me know the process for user creation , thanks in advance
