Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#%RAML 1.0
title: User import
version: v1
baseUri: http://localhost:8081
documentation:
- title: mod-user-import API
content: This documents the API calls that can be made to import users into the system
types:
userdataimportCollection: !include schemas/userdataimportCollection.json
importResponse: !include schemas/importResponse.json
/user-import:
post:
description: Create or update a list of users
body:
application/json:
type: userdataimportCollection
example:
value: !include examples/userdataimportCollection.json
strict: false
responses:
200:
description: "Return OK"
body:
application/json:
type: importResponse
500:
description: "Internal server error"
body:
application/json:
type: importResponse