Permalink
Cannot retrieve contributors at this time
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?
mod-user-import/ramls/import.raml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (30 sloc)
867 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%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 | |