Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Master
  • Authentication API
    • Authorization
      POST
  • Employee
    • Get Employee
      GET
    • Update Employee
      PUT
    • Get List Employees
      GET
    • Get Employees List
      GET
    • Get Mastertypes List
      GET
    • Get Name Prefixes
      GET
    • Get Document Types
      GET
    • Update Employee
      POST
    • Add Employee Attachment
      POST
    • Update Employee Address
      POST
    • Update Employee Family
      POST
    • Update Employee Information
      POST
    • Update Employee Shifts
      POST
    • Update Employee Contact
      POST
    • Update Employee Education
      POST
    • Update Employee Experience
      POST
    • Update Employee CustomField
      POST
    • Delete Employee
      POST
    • Get Employee Shifts
      GET
    • Get Employee Role
      GET
    • Get Employee Movement Lists
      GET
  • Leave
    • Get Employee Documents
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
    • Get Shift Details
      GET
  • Payroll
    • Create Loan
    • Get Loan (Draft)
    • Get Cost Center
    • Get Financial Transactions
    • Update Financial Transactions
  • Attendance
    • Get Time Attendance
    • Get Time Attendances Lite
  • Welfare
    • Get Shuttle Buses
    • Get Passengers
  • Time
    • Workin
    • Get Employee WorkIn Site
    • Get Timestamps
    • Get TimeStamp Attachments
    • Get Workin Sites
    • Get IOMO Logs
    • Add Timestamps
  • AppMan
    • Update status criminal checker
    • Send Email Notification when completed
  • Asset
    • Get Asset list
    • Update Asset
    • Get Employee Assets
  • Recruitment
    • Get Candidate
  1. Master

Get Holiday

Testing
GET
https://api.gofive.co.th/empeo/api/v1/masters/calendars
Get calendar day off By calendar name and year.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
calendarName
string 
optional
Example:
วันหยุด
year
integer 
optional
Example:
2024
Header Params
Ocp-Apim-Subscription-Key
string 
optional
Api subscription key get from the OpenAPI integration setting page
Example:
WPe123a9RKbcfLQNSztr45
Authorization
string 
optional
Authorization credential utilized in API requests
Example:
bearer {your token}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.gofive.co.th/empeo/api/v1/masters/calendars?calendarName=วันหยุด&year=2024' \
--header 'Ocp-Apim-Subscription-Key: WPe123a9RKbcfLQNSztr45' \
--header 'Authorization: bearer {your token}'

Responses

🟢200OK
application/json
Body
object {0}
Example
{
    "statusCode": 200,
    "message": "OK",
    "data": [
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-12-31",
                    "holidayName": "วันสิ้นปี"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-12-31",
                    "holidayName": "วันสิ้นปี"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-01-01",
                    "holidayName": "วันขึ้นปีใหม่"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-01-03",
                    "holidayName": "วันขึ้นปีใหม่ (พิเศษ)"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-02-08",
                    "holidayName": "วันมาฆบูชา"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-04-06",
                    "holidayName": "วันจักรี"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-05-01",
                    "holidayName": "วันแรงงานแห่งชาติ"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-05-04",
                    "holidayName": "วันฉัตรมงคล"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-05-06",
                    "holidayName": "วันวิสาขบูชา"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-10-23",
                    "holidayName": "วันปิยมหาราช"
                }
            ]
        },
        {
            "calendarName": "วันหยุด",
            "year": 2024,
            "dayOff": [
                {
                    "date": "2024-12-31",
                    "holidayName": "วันสิ้นปี"
                }
            ]
        }
🟠401User authentication required V2.
Previous
Get CustomField
Next
Get MasterSetup
Built with