404
5 |{{ getMsg() }}6 |
├── .gitignore ├── .yarn.lock.swp ├── LICENSE ├── README.md ├── deploy.sh ├── docs ├── .vuepress │ ├── config.js │ ├── public │ │ ├── create-apikey.png │ │ ├── create-apiuser.png │ │ ├── create-apiuser1.png │ │ ├── create-apiuser2.png │ │ ├── create-apiuser3.png │ │ ├── create-apiuser4.png │ │ ├── create_apikey.png │ │ ├── create_apiuser.png │ │ ├── get-apiuser.png │ │ ├── get-balance.png │ │ ├── get_apiuser_details.png │ │ ├── logon-partnerportal.png │ │ ├── momo.png │ │ ├── oauth_img.png │ │ ├── portal_create_apiuser.png │ │ ├── portal_create_user_submission.png │ │ ├── preapproval.png │ │ ├── products.png │ │ ├── register-app.png │ │ ├── request-response.png │ │ ├── request-to-pay.png │ │ ├── transfer.png │ │ ├── validate-account.png │ │ ├── validate_account_holder.png │ │ ├── your-applications.png │ │ └── your-subscriptions.png │ ├── style.styl │ └── theme │ │ ├── AlgoliaSearchBox.vue │ │ ├── DropdownLink.vue │ │ ├── DropdownTransition.vue │ │ ├── Home.vue │ │ ├── Layout.vue │ │ ├── NavLink.vue │ │ ├── NavLinks.vue │ │ ├── Navbar.vue │ │ ├── NotFound.vue │ │ ├── Page.vue │ │ ├── SWUpdatePopup.vue │ │ ├── SearchBox.vue │ │ ├── Sidebar.vue │ │ ├── SidebarButton.vue │ │ ├── SidebarGroup.vue │ │ ├── SidebarLink.vue │ │ ├── fonts │ │ ├── MTNBrighterSans-Bold.ttf │ │ └── MTNBrighterSans-Regular.ttf │ │ ├── search.svg │ │ ├── styles │ │ ├── arrow.styl │ │ ├── code.styl │ │ ├── config.styl │ │ ├── custom-blocks.styl │ │ ├── mobile.styl │ │ ├── nprogress.styl │ │ ├── theme.styl │ │ ├── toc.styl │ │ └── wrapper.styl │ │ └── util.js ├── README.md ├── api-description │ └── README.md ├── brand-guidelines │ └── README.md ├── common-error-codes │ └── README.md ├── introduction │ └── README.md ├── quickstart │ └── README.md ├── testing │ └── README.md └── use-cases │ └── README.md ├── package.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist 4 | 5 | # local env files 6 | .env.local 7 | .env.*.local 8 | *.map 9 | dist/demo.html 10 | 11 | # Log files 12 | npm-debug.log* 13 | yarn-debug.log* 14 | yarn-error.log* 15 | package-lock.json 16 | 17 | # Editor directories and files 18 | .bitmap 19 | .idea 20 | .vscode 21 | *.suo 22 | *.ntvs* 23 | *.njsproj 24 | *.sln 25 | 26 | # firebase stuff 27 | firebase.json 28 | .firebase.rc -------------------------------------------------------------------------------- /.yarn.lock.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkplug/mtn-momo-api-documentation/5d1fe685975058104e9fe66f0cbdb68dc891fdb9/.yarn.lock.swp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Sparkplug 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
13 | {{ data.tagline || $description || 'Welcome to your VuePress site' }} 14 |
15 | 16 |
20 |
{{ feature.details }}
37 |{{ getMsg() }}6 |
31 |
35 | ←
36 |