Gofive OpenAPI
empeoVenioeTaxGo
empeoVenioeTaxGo
  1. Master
  • 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 Contact
      POST
    • Update Employee Education
      POST
    • Update Employee Experience
      POST
    • Update Employee CustomField
      POST
    • Delete Employee
      POST
    • Get Employee Role
      GET
    • Get Employee Movement Lists
      GET
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
  • Shifts
    • Get Shift Details
      GET
    • Update Employee Shifts
      POST
    • Get Employee Shifts
      GET
    • Swap Employee Shifts
      POST
  • Authentication API
    • Authorization
  • Leave
    • Get Employee Documents
  • 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 CustomField

Developing
GET
https://api.gofive.co.th/empeo/api/v1/masters/custom-fields
Show details custom-field

Request

Header Params
Ocp-Apim-Subscription-Key
string 
optional
Example:
WPe123a9RKbcfLQNSztr45
Authorization
string 
optional
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/custom-fields'

Responses

🟢200OK
application/json
Body
status
object 
optional
code
string 
required
description
string 
required
data
array [object {7}] 
optional
fieldName
string 
optional
customFieldsType
enum<integer> 
optional
Allowed values:
Text SingleSelection MultiSelection DropdownList DatePicker Paragraph
fieldTypeName
null 
optional
textBoxType
enum<integer> 
optional
Allowed values:
None Letter Number Email Custom
textBoxTypeName
null 
optional
regularExpression
string 
optional
options
array [object {2}]  | null 
optional
Example
{
    "status": {
        "code": "1000",
        "description": "Success"
    },
    "data": [
        {
            "fieldName": "Paragraph",
            "customFieldsType": 20006,
            "textBoxType": 2
        },
        {
            "fieldName": "Single Selection",
            "customFieldsType": 20002,
            "textBoxType": 1,
            "options": [
                {
                    "sequence": "1",
                    "option": "Option 1"
                },
                {
                    "sequence": "2",
                    "option": "Option 2"
                },
                {
                    "sequence": "3",
                    "option": "Option 3"
                }
            ]
        },
        {
            "fieldName": "Multi Selection",
            "customFieldsType": 20003,
            "textBoxType": 1,
            "options": [
                {
                    "sequence": "1",
                    "option": "Option 1"
                },
                {
                    "sequence": "2",
                    "option": "Option 2"
                },
                {
                    "sequence": "3",
                    "option": "Option 3"
                }
            ]
        },
        {
            "fieldName": "Drop down List",
            "customFieldsType": 20004,
            "textBoxType": 1,
            "options": [
                {
                    "sequence": "1",
                    "option": "Option 1"
                },
                {
                    "sequence": "2",
                    "option": "Option 2"
                },
                {
                    "sequence": "3",
                    "option": "Option 3"
                },
                {
                    "sequence": "4",
                    "option": "Option 4"
                }
            ]
        },
        {
            "fieldName": "Date Picker",
            "customFieldsType": 20005,
            "textBoxType": 1
        },
        {
            "fieldName": "Text - none",
            "customFieldsType": 20001,
            "textBoxType": 1
        },
        {
            "fieldName": "Text - Letter",
            "customFieldsType": 20001,
            "textBoxType": 2
        },
        {
            "fieldName": "Text - Number",
            "customFieldsType": 20001,
            "textBoxType": 3
        },
        {
            "fieldName": "Text - Email",
            "customFieldsType": 20001,
            "textBoxType": 4
        },
        {
            "fieldName": "Text - Custom",
            "customFieldsType": 20001,
            "textBoxType": 5,
            "regularExpression": "^[a-z]$"
        }
    ]
}
🟠401User authentication required V2.
Modified at 2024-07-19 12:14:54
Previous
Get Organizations
Next
Get Holiday
Built with