Roomability Guest API
  1. Payment Method
  • Getting Started
    • Introduction
    • Requirements
    • Authentication
    • Errors
    • Booking Flow
  • Reservation
    • Add
    • Availability
    • Cancel
    • Booking Ref
  • Country
    • Get Countries List
  • State
    • Get State List
  • RoomType
    • Get Room Types
    • Get Room Detail
  • Guest
    • Detail
  • Term
    • Detail
  • Privacy
    • Detail
  • Payment Method
    • Active List
      GET
  • Paystack
    • Verify
    • Initialize
  • Hotel
    • Detail
    • Hotel Rule
  • PayGateway
    • Detail
  • CancelPolicy
    • Detail
  • Get Branches Location
    GET
  • Phone Code List
    GET
  1. Payment Method

Active List

GET
https://guestapi.roomability.io/Paymode/ActiveList
Last modified:2026-03-16 17:21:33

Retrieve Payment Mode#

This endpoint retrieves list of payment method active for the Hotel.

Request#

Method: GET
Endpoint: {{baseUrl}}/Paymode/ActiveList

Response#

The response for this request is a JSON object with the following schema:
{
  "type": "object",
  "properties": {
    "detail": {
      "type": "string"
    },
    "errorCode": {
      "type": "integer"
    },
    "errorMessage": {
      "type": "string"
    }
  }
}

Request

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://guestapi.roomability.io/Paymode/ActiveList' \
--header 'X-API-Key: {{api-key}}' \
--header 'Content-Type: application/json'
Response Response Example
{
    "items": [
        {
            "id": 1,
            "name": "Book On Hold"
        },
        {
            "id": 4,
            "name": "Paystack"
        }
    ],
    "errorCode": 0,
    "errorMessage": "Successfully retrieved payment methods."
}
Modified at 2026-03-16 17:21:33
Previous
Detail
Next
Verify
Built with