Learnifier
  1. Projects
Learnifier
  • Course Designs
    • Lists all global course design templates
      GET
  • Organization Units
    • Get Organization Unit with External Id
      GET
    • Organization Units
      GET
    • Adds an Organization Unit
      POST
    • Get Organization Unit
      GET
    • Updates an Organization Unit
      PATCH
  • Users
    • Gets a participation by external id
      GET
    • Gets a user by external id
      GET
    • Lists all users
      GET
    • Adds a user
      POST
    • User information
      GET
    • Updates user information
      PATCH
    • User profile picture
      GET
    • Returns information about the projects the user is a participant in.
      GET
  • Projects
    • Gets Organization Unit by external id
      GET
    • Organization Unit Projects
      GET
    • Create project
      POST
    • Deletes the project
      DELETE
    • Project information
      GET
    • Update project information
      PATCH
    • Project participants
      GET
    • Add participant
      POST
    • Deletes a participant
      DELETE
    • Activate participant
      POST
    • Participant login link
      POST
    • Project team members
      GET
  • Global User Groups
    • List Global User Groups.
    • List of all users in group.
  • User Groups
    • List User Groups.
    • Create a User Group.
    • Get user group
    • List of all users in group.
    • Add user group member.
    • Remove user group member.
  1. Projects

Create project

POST
/orgunits/{orgid}/projects
Projects
Creates a new project
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://learnifier.com/orgunits//projects' \
--header 'Content-Type: application/json' \
--data-raw '{
    "country": "SE",
    "createdBy": "8c102c8e-fabd-4c8a-b245-4d2d2f77fc4b",
    "designId": 0,
    "locale": "en-US",
    "name": "string",
    "note": "string",
    "timezone": "Europe/Stockholm",
    "userDescription": "string",
    "userTitle": "string"
}'
Response Response Example
200 - Example 1
{
    "code": 0,
    "field": "string",
    "message": "string"
}

Request

Path Params
orgid
integer 
required
Id of the organization unit
Body Params application/json
country
string <countrycode>
optional
The country code. Default value will be used if not specified
Example:
SE
createdBy
string <uuid>
optional
The id of the user that created the project. If the creator is not known this value can be null or not specified
Example:
8c102c8e-fabd-4c8a-b245-4d2d2f77fc4b
designId
integer <int64>
required
The id of the design this project should be based on
locale
string <locale>
optional
The primary locale for this project. Default value will be used if not specified
Example:
en-US
name
string 
required
The internal name of the project
note
string 
optional
The internal note field
timezone
string <timezone>
optional
The main timezone for the project. Do not specify for default timezone
Example:
Europe/Stockholm
userDescription
string 
optional
The description presented to participants. Do not specify for default value from design
userTitle
string 
optional
The title presented to participants. Do not specify for default value from design
Examples

Responses

🟢200Unexpected error
application/json
Body
code
integer <int32>
optional
Optional error code
field
string 
optional
The input field that the error was related to
message
string 
optional
Optional error message
🟢201The project was succesfully created created.
Previous
Organization Unit Projects
Next
Deletes the project
Built with