show billing

GET /show
show billing
Path parameters
  • access_token

    string

    required

    token to be passed as a header

    minLength: 64

    maxLength: 64

  • extension_id

    integer

    required

    The extension id.

    format : int64

Sample Request

                      curl -v -X GET http://127.0.0.1:8990/api/billing/show \
                        -H "Content-Type: application/json" \
                        -H "access_token: 4DFCF1D4C30B4D798ECE3AE43769F008" \
                      
                    

Responses

200
Successful operation
application/json
  • billing

    string

    billing.
  • currency

    string

    currency.
  • id

    integer

    The extension entry id.

Sample Response

                      
{}
                      
                    

Update billing

POST /update
Path parameters
  • access_token

    string

    required

    token to be passed as a header

    minLength: 64

    maxLength: 64

Request body
application/json
  • billing

    string

    required

    billing.
  • id

    integer

    required

    The extension entry id.

Sample Request

                      curl -v -X POST http://127.0.0.1:8990/api/billing/update \
                        -H "Content-Type: application/json" \
                        -H "access_token: 4DFCF1D4C30B4D798ECE3AE43769F008" \
                          -d '{}'
                      
                    

Responses

200
Updated blacklist

Sample Response