...
To make another network go to menu -> Admin -> Connections -> Create Connection.
View Connection Details
Go to menu -> Admin -> Connections -> List Connections.
You will see a list of connections. You can view a connection by clicking on the it's ID (in green). You can also edit or delete the network.
Connections are stored in the database in the "oa_connection" table. A typical entry will look as below.
...
Request Method | ID | Action | Resulting Function | URL Example | Notes | Example Response |
---|---|---|---|---|---|---|
GET | n | collection | /connections | Returns a list of connections. | connections_collection.json | |
GET | y | read | /connections/{id} | Returns a connection's details. | connections_read.json | |
PATCH | y | update | /connections/{id} | Update an attribute of a connections entry. | connections_patch.json | |
POST | n | create | /connections | Insert a new connections entry. | connections_create.json | |
DELETE | y | delete | /connections/{id} | Delete a connections entry. | connections_delete.json |
Web Application Routes
Request Method | ID | Action | Resulting Function | URL Example | Notes |
---|---|---|---|---|---|
GET | n | create | create_form | /connections/create | Displays a standard web form for submission to POST /connections. |
GET | y | update | update_form | /connections/{id}/update | Show the connection's details with the option to update attributes using PATCH to /connections/{id} |
...