Hi,
We are using an identity provider called Okta. They have given me the code below as an example to create new user in their directory using the API call.
Does anyone know how I would be calling this within a process model? What is the smart service to use?
This is new to me so thanks in advance to anyone that replies.
curl -v -X POST \-H "Accept: application/json" \-H "Content-Type: application/json" \-H "Authorization: SSWS ${api_token}" \-d '{ "profile": { "firstName": "Isaac", "lastName": "Brock", "email": "isaac.brock@example.com", "login": "isaac.brock@example.com", "mobilePhone": "555-415-1337" } }' "https://{yourOktaDomain}.com/api/v1/users?activate=false"
Discussion posts and replies are publicly visible
Gary, since this just a HTTP POST request, use HTTP Query, passing POST as the Method input. The -d part of your curl command maps to the smart service's Request Body input.
-d
curl