Connection JSON ==================== { "authentications": { "acctAuth": { "authType": "oauth2", "httpHeaders": { }, "url": "https://scim.workplace.com/Users/", "httpMethod": "POST", "httpParams": {}, "httpContentType": "application/x-www-form-urlencoded", "retryFailureStatusCode": [ 401, 500, 400 ], "authError": [ "SESSION_NOT_VALID", "AuthenticationFailed", "ExpiredJwtException", "401 Unauthorized", "401", "You couldn't be authenticated" ], "errorPath": "code", "maxRefreshTryCount": 5, "tokenResponsePath": "access_token", "tokenType": "Bearer", "accessToken": "ABCDEF" } } } ========================================================================= CreateAccount JSON =================== { "call": [{ "name": "Access", "connection": "acctAuth", "url": "https://scim.workplace.com/Users/", "httpMethod": "POST", "httpParams": "{\"schemas\":[\"urn:ietf:params:scim:schemas:core:2.0:User\",\"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\",\"urn:ietf:params:scim:schemas:extension:facebook:accountstatusdetails:2.0:User\",\"urn:ietf:params:scim:schemas:extension:facebook:authmethod:2.0:User\",\"urn:ietf:params:scim:schemas:extension:facebook:frontline:2.0:User\"],\"externalId\":\"${user.systemusername}\",\"name\":{\"formatted\": \"${user.firstname} ${user.lastname}\",\"familyName\": \"${user.lastname}\",\"givenName\": \"${user.lastname}\"},\"userName\": \"${user.email}\",\"profileUrl\":\" \",\"photos\":[{\"value\": \"https://www.gravatar.com/avatar/00000000000000000000000000000000?d=mp&s=1200&f=y\",\"type\": \"profile\",\"primary\": \"true\"}],\"emails\":[{\"value\": \"${user.email}\",\"display\": \"${user.email}\",\"primary\": \"false\"}],\"phoneNumbers\":[{\"value\": \"+1-416-555-1212\",\"type\": \"work\",\"display\": \"+1-416-5555-1212\",\"primary\": \"true\"}],\"addresses\":[{\"formatted\": \"Toronto, Ontario\",\"type\": \"work\",\"primary\": \"true\"}],\"title\": \"Product Manager\",\"locale\": \"en-GB\",\"active\": \"true\",\"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User\":{\"division\": \"Communications Digital Enablement\",\"department\": \"POMO\",\"manager\":{\"value\": \"100089342719881\"}},\"urn:ietf:params:scim:schemas:extension:facebook:accountstatusdetails:2.0:User\":{\"claimed\": \"false\",\"invited\": \"false\"},\"urn:ietf:params:scim:schemas:extension:facebook:authmethod:2.0:User\":{\"authMethod\": \"password\"},\"urn:ietf:params:scim:schemas:extension:facebook:frontline:2.0:User\":{\"frontline\": \"false\"}}", "httpHeaders": { "Authorization": "${access_token}", "Accept": "application/json" }, "httpContentType": "application/json", "successResponses": { "statusCode": [200] }, "unsuccessResponses": { "statusCode": [400, 404, 405, 500] } }] } ==================================================================== Import JSON ============ {     "accountParams": {         "connection": "acctAuth",         "processingType": "SequentialAndIterative",         "call": {             "call1": {                 "callOrder": 0,                 "stageNumber": 0,                 "http": {                     "url": "https://scim.workplace.com/Users/100089342719881",                     "httpHeaders": {                         "Authorization": "${access_token}",                         "Content-Type":"application/json"                     },                     "httpContentType": "application/json",                     "httpMethod": "GET"                 },                 "statusConfig": {                     "active": "true",                     "inactive": "false"                 },                 "listField": "",                 "keyField": "accountID",                 "colsToPropsMap": {                 "accountID": "externalId~#~char",                 "customproperty1": "userName~#~char",                 "name": "externalId~#~char"                                     }             }         }     } }