Skip to main content

Edit Bill / Payment Link

PUT 

/v2/pwf/:bill_id/bill

An endpoint to edit a payment/bill link

Request

Path Parameters

    bill_id stringrequired

    Flip’s bill link id

Body

required

    title string

    The title of the bill.

    type string

    Possible values: [SINGLE, MULTIPLE]

    Bill type. For bill created with step 3 only SINGLE is permissible.

    amount integer

    Payment amount.

    expired_date date-time

    Bill expiry date. The bill can’t be used any more beyond the expiry date. Format YYYY-MM-DD HH:mm.

    redirect_url string

    Redirect URL after payment is success.

    status string

    Possible values: [ACTIVE, INACTIVE]

    Bill activation status

    is_address_required integer

    A flag if user needs to input their address when creating payment. 0 is false (default), 1 is true

    is_phone_number_required integer

    A flag if user needs to input their phone number when creating payment. 0 is false (default), 1 is true

Responses

Expected Get All bill Response

Schema

    link_id integer
    link_url string
    title string
    type string
    amount integer
    redirect_url string
    expired_date date-time
    created_from string
    status string
    is_address_required integer
    is_phone_number_required integer
    step integer
Loading...