Skip to content

Instantly share code, notes, and snippets.

@ollieread
Last active January 19, 2018 02:37
Show Gist options
  • Save ollieread/efff39a4e85da7efaa370c413331faf2 to your computer and use it in GitHub Desktop.
Save ollieread/efff39a4e85da7efaa370c413331faf2 to your computer and use it in GitHub Desktop.
+----------+--------------------------------------------------------------+-------------------------------------+
| Method | URI | Name |
+----------+--------------------------------------------------------------+-------------------------------------+
| POST | account | account.create |
| POST | account/identify | account.identify |
| GET|HEAD | account/{account} | account.view |
| PATCH | account/{account} | account.update |
| DELETE | account/{account} | account.delete |
| POST | account/{account}/world | account.world.create |
| DELETE | account/{account}/world/{world} | account.world.delete |
| PATCH | account/{account}/world/{world} | account.world.update |
| GET|HEAD | account/{account}/world/{world} | account.world.view |
| GET|HEAD | account/{account}/world/{world}/entities | account.world.entity.index |
| POST | account/{account}/world/{world}/entity | account.world.entity.create |
| GET|HEAD | account/{account}/world/{world}/entity/{entity} | account.world.entity.view |
| PATCH | account/{account}/world/{world}/entity/{entity} | account.world.entity.update |
| DELETE | account/{account}/world/{world}/entity/{entity} | account.world.entity.delete |
| POST | account/{account}/world/{world}/entity/{entity} | account.world.entity.create |
| GET|HEAD | account/{account}/world/{world}/entity/{entity}/content | account.world.entity.content |
| PATCH | account/{account}/world/{world}/entity/{entity}/{content} | account.world.entity.content.update |
| GET|HEAD | account/{account}/world/{world}/entity/{entity}/{content} | account.world.entity.content.view |
| DELETE | account/{account}/world/{world}/entity/{entity}/{content} | account.world.entity.content.delete |
| GET|HEAD | account/{account}/worlds | account.world.index |
| GET|HEAD | accounts | account.index |
| GET|HEAD | packages | package.index |
| GET|HEAD | user | user.view |
| PATCH | user | user.update |
| DELETE | user | user.delete |
| POST | user/auth | user.auth |
| DELETE | user/card/{card} | user.card.delete |
| POST | user/card/{card} | user.card.create |
| GET|HEAD | user/card/{card} | user.card.view |
| GET|HEAD | user/cards | user.card.index |
| POST | user/create | user.create |
| GET|HEAD | user/invoice/{invoice} | user.invoice.view |
| GET|HEAD | user/invoices | user.invoice.index |
| PATCH | user/notification/{notification} | user.notification.read |
| DELETE | user/notification/{notification} | user.notification.delete |
| GET|HEAD | user/notifications | user.notification.index |
| POST | user/password/forgot | user.forgot |
| POST | user/password/reset | user.reset |
| GET|HEAD | user/payment/{invoice} | user.payment.view |
| GET|HEAD | user/payments | user.payment.index |
| DELETE | user/subscription/{subscription} | user.subscription.delete |
| GET|HEAD | user/subscription/{subscription} | user.subscription.view |
| GET|HEAD | user/subscriptions | user.subscription.index |
| POST | user/verify | user.verify |
+----------+--------------------------------------------------------------+-------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment