Next Hour App
  • Introduction
    • Introduction
    • Key Features
    • Flutter
  • Installation
    • Flutter Installation
    • App Secret Key
  • project setup
    • App Deployment
      • Firebase
    • iOS Setup Instructions
    • Google Drive Key
    • OneSignal
    • Images
    • Reskinning
  • Publish your app
    • Requirements to Publish App
  • FAQ
    • Installation FAQ's
    • Access Denied
    • General Setting
    • Disclaimer
    • Regular & Extended Licenses
    • Privacy Policy
  • Troubleshoot
    • Troubleshoot
    • Changelogs
  • Source & credit
    • Source & Credit
  • Support
    • Support
  • conclution
    • Conclusion
  • our products
    • Next Hour Addons
    • Our Products
  • Api Document
    • Getting Started
  • Get secret key
  • Auth Api
    • Login
  • Home Page Api
  • Actor detail page
  • Payment Api
    • Payment Method List
    • Manual payment list
    • Subscribed with manual payment
    • Subscribed with free subscription
    • Subscription Stop and Resume
    • Invoice
  • Player Setting Api
    • Player Setting
    • Advertise
  • User Api
    • View User profile
    • Wishlist
    • Watch History
    • User Profile Update
    • Manage Profile
    • Notification
  • Coupon Api
  • Other Api
    • List of Contents
    • Menu
    • Slider
    • Package
    • List of all movies
    • List of all tvseries
    • List of all movies, tveries and top movie and tvseries
    • Recent Movies and Tvseries
    • List of menu by movies and tvseries
    • Language by movies and tvseries
Powered by GitBook
On this page
  1. Payment Api

Subscribed with manual payment

Fire this api to user subscribed with manual payment.

api/store/manualPayment

POST https://yourdomain.com/api/store/manualPayment

This endpoint allows you to store payment with manual payment method.

Query Parameters

Name
Type
Description

secret

string

Client secret key will goes here which you get from admin panel.

Headers

Name
Type
Description

Authorization*

string

Bearer { bearer_token without bracket }

Accept*

string

application/json

Request Body

Name
Type
Description

plan_id*

interger

enter plan / package id

amount*

double

enter plan amount

method*

string

manual payment name

proof*

string

enter attached a proof

reference*

string

enter a transcation id

{
    "package_id": "1",
    "price": "1",
    "payment_id": "ASWR678",
    "status": 0,
    "method": "test",
    "user_id": 1,
    "user_name": "Test",
    "file": null,
    "subscription_from": "2021-12-21T10:13:15.644038Z",
    "subscription_to": "2022-01-21T10:13:15.644086Z",
    "updated_at": "2021-12-21T10:13:15.000000Z",
    "created_at": "2021-12-21T10:13:15.000000Z",
    "id": 421-12-21T07:34:58.000000Z",
    "id": 1
}
{
    "message": "Unauthorized !"
}

//or

{
    "message": "Secret Key is required"
}
{
    "message": "Invalid Secret Key !"
}
{
    "msg": "The amount field is required.",
    "status": "fail"
}

//or

{
    "msg": "The proof field is required.",
    "status": "fail"
}

//or

{
    "msg": "The plan id field is required.",
    "status": "fail"
}

//or

{
    "msg": "The reference field is required.",
    "status": "fail"
}
PreviousManual payment listNextSubscribed with free subscription

Last updated 3 years ago