Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
This page

This tutorial is designed to give you a quickstart on getting to know the system and how to work with it simply by following a step-by-step guideshow you the API and by that get a quick glance of the system.

Table of Contents
Table of Contents
outlinetrue

Prerequisites

There is not a lot that you need to start these first steps, but it includes a computer and some free time!

Additionally some basic knowledge about terminal usage within Linux (Ubuntu) is assumed. You can find some good starter information on the official Ubuntu documentation, although you should be able to copy all the commands from this tuturial and learn on the go!

Installation

See the installation page for instructions on how to install the system and get it running.

Using the API

Prerequisites

Before you ask, API stands for Application Programming Interface, it describes how to use a system and what it can do, for us this is the place to start as it quickly shows you the power of the system!

Using the API

Prerequisites

Before you ask, API stands for Application Programming Interface, it describes how to use a system and what it can do. For us this is the place to start as it quickly shows you the power of the system! In this tutorial, we are going to use the API to access data about users (e.g. AEGEE members) and bodies (e.g. AEGEE Antennae) in the data base.

To use the API we are going to use a tool called Postman, it is a well-established chrome extension that makes using a REST API a breeze.

If you are using chrome you can find Postman here, if you do not use chrome I suggest you install chrome first (big grin)otherwise you can find a standalone version here.

Steps to take

  1. Run the OMS system as instructed in the installation guide
  2. Fire up postman (open Apps of Google Chrome on the top left corner of the browser. If you have installed postman, it should show up here. Otherwise, see above)
  3. Check to see if the system is running and ready to be used
    1. Enter the URL to be `localhost`
    2. Set the method to GET (left of the URL)
    3. Hit Send!
  4. Check if the response matches screenshot 1 on the left
    1. Above the response are buttons: (pretty|raw|preview)
      1. These change the way the response is viewed
    2. Press preview
    3. It should look a little bit better now!
  5. Log in as a User
    1. Change the method to POST
    2. Change the URL to `localhost/api/login`
    3. Right below the the URL bar are buttons: (authorization|headers|body|pre-request scripts|tests)
      1. These are tabs to enter additional request settings.
      2. Note that the response has similar buttons, yet these are for the response!
    4. Click the body button (of the request)
      1. Enter 2 new keys (screenshot 2; it might be necessary to select 'x-www-form-urlencoded')
        1. key='username', value='admin@aegee.org'
        2. key='password', value='1234'
    5. Hit send!
    6. Verify the response looks similar to response 1
  6. See all the Users
    1. Open a new tab within Postman
      1. I like to keep one tab open to quickly
loginSet the
      1. be able to login again and get a new token when needed
    1. Set the method to GET
    2. Set the URL to `localhost/api/users`
    3. Open the request Header tab
      1. Enter a new key
        1. key='X-Auth-Token', value='
yourlogintoken
        1. enteranynumber'
    1. Hit send!
      1. You should get a forbidden message
    2. Enter the correct login token
      1. Go back to your login request
      2. Copy the value with the key "data"
        1. In the example response this is `da78dbb0-6ff4-11e7-bb7e-476b0d476473`
      3. Paste it in the value for the X-Auth-Token
    3. Hit Send again!
    4. Check if the response equals response 2

Image Removed

Screenshot 1 - Postman

Code Block
languagejs
titleResponse 1 - Login
{ "success": true, "meta
  1. See your User
    1. Keep the GET method
    2. Keep the X-Auth-Token
    3. Change the URL to 'localhost/api/users/1'
    4. Hit Send!
    5. Check if the response equals response 3
  2. Create a Body
    1. Set the method to POST
    2. Set the URL back to 'localhost/api/bodies'
    3. Hit Send!
    4. Check the errors you got
    5. Go to the Body tab of the request and enter the following keys
      1. key='type_id', value='1'
      2. key='address_id', value='1'
      3. key='name', value='yourfavouritelocal'
      4. key='email', value='yourfavouriteemailaddress'
    6. Hit Send!
    7. Check if your response is similar to response 4
  3. Check all the Bodies
    1. Try finding this out yourself!
  4. Check the rest of the API. In the documentation you will find instructions on how to do what we just did already, and more. Mind: in the documentation it will say "http://oms.apiblueprint.org" instead of 'localhost'. You have to replace this, either by 'localhost' or by 'oms.aegee.org' to contact the right system.
    1. The API documentation can be found here

Screenshot 1 - Postman

Image Added

Screenshot 2 - Postman//login

Image Added

Code Block
languagejs
titleResponse 1 - Login
{
    "success": true,
    "meta": null,
    "data": "da78dbb0-6ff4-11e7-bb7e-476b0d476473",
    "message": "User login token"
}


Code Block
languagejs
titleResponse 2 - GET Users
collapsetrue
{
    "success": true,
    "meta": null,
    "data": [
        {
            "id": 2,
            "address_id": 2,
            "personal_email": "derk.snijders@aegee.org",
            "first_name": "Derk",
            "last_name": "Snijders",
            "date_of_birth": "1993-10-31 00:00:00",
            "gender": "male",
            "phone": null,
            "description": null,
            "remember_token": null,
            "is_superadmin": 1,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "i3anaan",
            "activated_at": "2017-07-18 10:13:06",
            "created_at": "2017-07-18 10:13:06",
            "updated_at": "2017-07-18 10:13:06",
            "internal_email": "derk.snijders@aegee.eu",
            "first_name_simple": "Derk",
            "last_name_simple": "Snijders"
        },
        {
            "id": 3,
            "address_id": 1,
            "personal_email": "nico.westerbeck@aegee.org",
            "first_name": "Nico",
            "last_name": "Westerbeck",
            "date_of_birth": "1985-04-16 00:00:00",
            "gender": "male",
            "phone": null,
            "description": null,
            "remember_token": null,
            "is_superadmin": 0,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "blacksph3re",
            "activated_at": "2017-07-18 10:13:06",
            "created_at": "2017-07-18 10:13:06",
            "updated_at": "2017-07-18 10:13:06",
            "internal_email": null,
            "first_name_simple": "Nico",
            "last_name_simple": "Westerbeck"
        },
        {
            "id": 4,
            "address_id": 1,
            "personal_email": "sergey.peshkov@aegee.org",
            "first_name": "Sergey",
            "last_name": "Peshkov",
            "date_of_birth": "1985-04-16 00:00:00",
            "gender": "male",
            "phone": null,
            "description": null,
            "remember_token": null,
            "is_superadmin": 0,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "sergey.peshkov",
            "activated_at": "2017-07-18 10:13:06",
            "created_at": "2017-07-18 10:13:06",
            "updated_at": "2017-07-18 10:13:06",
            "internal_email": null,
    
"data": "da78dbb0-6ff4-11e7-bb7e-476b0d476473",
        "
message
first_name_simple": "Sergey"
User
,
login
 
token"
 
} Code Block
languagejs
titleResponse 2 - GET Users
collapsetrue
{
     
"success":
 
true,
    "last_name_simple": "
meta
Peshkov"
:

  
null,
     
"data": [
 },
        {
            "id": 
2
5,
            "address_id": 
2
1,
            "personal_email": "
derk
fabrizio.
snijders@aegee
bellicano@aegee.org",
            "first_name": "
Derk
Grace",
            "last_name": "
Snijders
Hopper",
            "date_of_birth": "
1993
1985-
10
04-
31
16 00:00:00",
            "gender": "
male
female",
            "phone": null,
            "description": null,
            "remember_token": null,
            "is_superadmin": 
1
0,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "
i3anaan
gracehopper",
            "activated_at": "2017-07-18 10:13:
06
07",
            "created_at": "2017-07-18 10:13:
06
07",
            "updated_at": "2017-07-18 10:13:
06
07",
            "internal_email": 
"derk.snijders@aegee.eu"
null,
            "first_name_simple": "
Derk
Grace",
            "last_name_simple": "
Snijders
Hopper"
        },
        {
            "id": 
3
6,
            "address_id": 1,
            "personal_email": "
nico.westerbeck@aegee
headoffice@aegee.org",
            "first_name": "
Nico
Big",
            "last_name": "
Westerbeck
Boobs",
            "date_of_birth": "
1985
1998-04-16 00:00:00",
            "gender": "
male
female",
            "phone": null,
            "description": null,
            "remember_token": null,
            "is_superadmin": 0,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "
blacksph3re
boobies",
            "activated_at": "2017-07-18 10:13:
06
07",
            "created_at": "2017-07-18 10:13:
06
07",
            "updated_at": "2017-07-18 10:13:
06
07",
            "internal_email": null,
            "first_name_simple": "
Nico
Big",
            "last_name_simple": "
Westerbeck
Boobs"
        },
        {
            "id": 
4
1,
            "address_id": 1,
            "personal_email": "
sergey.peshkov@aegee
admin@aegee.org",
            "first_name": "
Sergey
Super",
            "last_name": "
Peshkov
Admin",
            "date_of_birth": "1985-04-16 00:00:00",
            "gender": "
male
other",
            "phone": null,
            "description": null,
            "remember_token": 
null
"whFezyRDtQV1zRvgoh3rxbKarI39fDObmKiRmPDFDQwjfnhP1xZ9nXVkD8NE",
            "is_superadmin": 
0
1,
            "is_suspended": null,
            "suspended_reason": null,
            "seo_url": "
sergey.peshkov
superadmin",
            "activated_at": "2017-07-18 10:13:06",
            "created_at": "2017-07-18 10:13:06",
            "updated_at": "2017-07-18 10:13:06",
            "internal_email": null,
            "
updated
first_name_
at
simple": "
2017-07-18 10:13:06
Super",
            "
internal
last_name_
email
simple": 
null,
"Admin"
        }
    ],
    "
first_name_simple
message":
"Sergey",
 null
}


Code Block
languagejs
titleResponse 3 - GET Users/1
collapsetrue
{
    "success": true,
    
"last_name_simple
"meta": 
"Peshkov" }
null,
    
{
"data": {
        
"id": 
5
1,

        "address_id": 1,

        
"personal_email": "
fabrizio.bellicano@aegee
admin@aegee.org",
        
"first_name": "
Grace
Super"
,
,
        
"last_name": "
Hopper
Admin",

        "date_of_birth": "1985-04-16 00:00:00",

        
"gender": "
female
other",

        
"phone": null,
        
"description": null,
        
"remember_token": 
null,
"whFezyRDtQV1zRvgoh3rxbKarI39fDObmKiRmPDFDQwjfnhP1xZ9nXVkD8NE",
        
"is_superadmin": 
0
1,
        
"is_suspended": null,

        
"suspended_reason": null,

        "seo_url": "
gracehopper
superadmin",

        
"activated_at": "2017-07-18 10:13:
07
06",
        
"created_at": "2017-07-18 10:13:
07
06",

        "updated_at": "2017-07-18 10:13:
07
06",

        
"internal_email": null,
        
"first_name_simple": "
Grace
Super",
        
"last_name_simple": "
Hopper"
Admin",
        "address": {
          
}
  "id": 1,
       
{
     "country_id": 21,
            "
id
street": 
6
"Notelaarsstraat 55",
            "
address_id
zipcode": 
1
"1000",
            "
personal_email
city": "
headoffice@aegee.org
Brussels",
            "
first
created_
name
at": "
Big
2017-07-18 10:13:06",
            "
last
updated_
name
at": "
Boobs",
2017-07-18 10:13:06"
        },
        "
date_of_birth
bodies": 
"1998-04-16 00:00:00",
[
            {
 
"gender": "female",
               "
phone
id": 
null
1,
            
"description
    "type_id": 
null
2,
                "
remember
address_
token
id": 
null
1,
            
"is_superadmin
    "name": 
0
"AEGEE-Europe",
                "email": "headoffice@aegee.org",
  
"is_suspended":
 
null,
             "
suspended_reason
phone": null,
                "
seo_url
description": 
"boobies"
null,
                "
activated
legacy_
at
key": "
2017-07-18 10:13:07
AEU",
                "created_at": "2017-07-18 10:13:
07
06",
                "updated_at": "2017-07-18 10:13:
07",
06",
   
"internal_email": null,
             "
first_
name_simple": "
Big
AEGEE-Europe",
             
"last_name_simple
   "pivot": 
"Boobs"
{
        
},
         
{
   "user_id": 1,
        
"id": 1,
            "
address
body_id": 1
,

                }
 
"personal_email":
 
"admin@aegee.org",
          }
  
"first_name": "Super",
      ],
        "
last_name
circles": 
"Admin",
[
            
"date_of_birth": "1985-04-16 00:00:00",
{
                "
gender
id": 
"other"
4,
            
"phone": null,
    "body_id": 4,
                "
description
parent_id": 
null
1,
            
"remember_token
    "name": "
whFezyRDtQV1zRvgoh3rxbKarI39fDObmKiRmPDFDQwjfnhP1xZ9nXVkD8NE
Lia & Derk",
                "
is_superadmin
description": 
1,
"IT people in da house",
        
"is_suspended":
 
null,
       "created_at": "2017-07-18 10:13:07",
   
"suspended_reason": null,
             "
seo
updated_
url
at": "
superadmin
2017-07-18 10:13:07",
                "
activated
name_
at
simple": "
2017-07-18 10:13:06",
Lia & Derk",
                "
created_at
pivot": 
"2017-07-18 10:13:06",
{
                    "
updated
user_
at
id": 
"2017-07-18 10:13:06",
1,
                    "
internal
circle_
email
id": 
null,
4
              
"first_name_simple":
 
"Super",
 }
           
"last_name_simple": "Admin"
 }
        
}
]
    
]
},
    "message": null
}

Get to know docker

Doing your first Pull Request

Response 4

Jira Legacy
serverJIRA (oms-project.atlassian.net)
columnskey,summary,type,created,updated,due,assignee,reporter,priority,status,resolution
serverIdedf3f91b-210c-3cfc-933c-f8d8084c5f2c
keyCORE-112