how to call a REST API

 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

Parents Reply Children
No Data