Gofive OpenAPI
empeo
VenioeTaxGo
empeo
VenioeTaxGo
  1. Achievement
  • Authentication
    • Authorization
      POST
  • Master
    • Get Organizations
      GET
    • Get CustomField
      GET
    • Get Holiday
      GET
    • Get MasterSetup
      GET
    • Get Overtimes
      GET
  • Recruitment
    • Get Candidate
      GET
  • Core HR
    • Attendance
      • Get Time Attendance
      • Workin
      • Get Employee WorkIn Site
      • Get Timestamps
      • Get TimeStamp Attachments
      • Get Workin Sites
      • Get IOMO Logs
      • Add Timestamps
    • Asset
      • Get Asset list
      • Update Asset
      • Get Employee Assets
    • Employee
      • Get Employee
      • Update Employee
      • Get Employees List
      • Get Mastertypes List
      • Get Name Prefixes
      • Get Document Types
      • Update Employee
      • Add Employee Attachment
      • Update Employee Address
      • Update Employee Family
      • Update Employee Contact
      • Update Employee Education
      • Update Employee Experience
      • Update Employee CustomField
      • Delete Employee
      • Get Employee Role
      • Get Employee Movement Lists
    • Leave
      • Get Employee Documents
    • Shifts
      • Get Shift Details
      • Update Employee Shifts
      • Get Employee Shifts
      • Swap Employee Shifts
    • Timesheet
      • Search Projects
      • Search Tasks
      • Create Timesheet Entry
  • Payroll
    • Get Financial Transactions
      POST
    • Update Financial Transactions
      PUT
    • Create Loan
      POST
    • Get Cost Center
      POST
  • Welfare
    • Shuttle Buses
    • Passengers
  • Goals
    • Update KPI
  • Engagement
    • Achievement
      • Get Employee Achievements
        GET
      • Create Achievement Card
        POST
      • Create Achievement Award Document
        POST
      • Get Achievement Events
        POST
    • Praise
      • Get Employee Praises
      • Get Praise Types
      • Create Praise Reward Manager
    • StampCard
      • Get Stamp Cards
      • Get Stamp Card Detail
      • Add Stamp
    • Celebration
      • Get Upcoming Celebrations
    • Mission
      • ดึงคิวงานรอตรวจ
      • ดึงรายละเอียดงาน 1 ใบ
      • ดึงตัวเลขสรุปงานตามสถานะ
      • อนุมัติงานหลายใบพร้อมกัน
      • ส่งงานกลับให้แก้หลายใบพร้อมกัน
  • Overtime
    • Get Overtimes Preriods
    • Get Overtimes Documents
  • Employee
    • User Info
    • Update Employee Information
  1. Achievement

Create Achievement Card

POST
https://api.gofive.co.th/empeo/api/v1/achievements
สร้างการ์ด Achievement
สร้างการ์ด Achievement สำหรับบริษัทและหมวดหมู่ที่ระบุ ใช้เมื่อระบบภายนอกต้องเตรียม Achievement ใหม่
รวมทั้งตั้งค่า token, reward และการแชร์กลับได้
🔐 ต้องมีสิทธิ์ Open API โมดูล Achievement ระดับ ReadAndWrite

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Header Params

Body Params application/jsonRequired

Example
{
    "CompanyName": "Acme",
    "Name": "Achievement Open API",
    "CategoryName": "General",
    "Description": "การ์ดตัวอย่างสำหรับยกย่องการทำงานร่วมกัน",
    "CoverUrl": "https://cdn.example.com/achievement-open-api.png",
    "IsActive": true,
    "IsOfferToken": false,
    "OfferTokenName": "",
    "OfferTokenAmount": 0,
    "IsOfferReward": false,
    "OfferRewardName": "",
    "IsShareBack": true,
    "QuestionTitle": "เล่าเรื่องความสำเร็จของคุณ",
    "QuestionPlaceholder": "ตัวอย่างเช่น สิ่งที่ทีมช่วยกันทำสำเร็จ"
}

Request Code 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 'https://api.gofive.co.th/empeo/api/v1/achievements' \
--header 'Ocp-Apim-Subscription-Key: YOUR_SUBSCRIPTION_KEY' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "CompanyName": "Acme",
    "Name": "Achievement Open API",
    "CategoryName": "General",
    "Description": "การ์ดตัวอย่างสำหรับยกย่องการทำงานร่วมกัน",
    "CoverUrl": "https://cdn.example.com/achievement-open-api.png",
    "IsActive": true,
    "IsOfferToken": false,
    "OfferTokenName": "",
    "OfferTokenAmount": 0,
    "IsOfferReward": false,
    "OfferRewardName": "",
    "IsShareBack": true,
    "QuestionTitle": "เล่าเรื่องความสำเร็จของคุณ",
    "QuestionPlaceholder": "ตัวอย่างเช่น สิ่งที่ทีมช่วยกันทำสำเร็จ"
}'

Responses

🟢200OK
application/json
สร้าง Achievement Card สำเร็จ
Bodyapplication/json

Example
{
    "StatusCode": 200,
    "Message": "OK",
    "Data": {
        "AchievementId": 101,
        "AchievementName": "Achievement Open API",
        "CoverUrl": "https://cdn.example.com/achievement-open-api.png",
        "Description": "การ์ดตัวอย่างสำหรับยกย่องการทำงานร่วมกัน",
        "IsActive": true,
        "IsShareBack": true,
        "QuestionTitle": "เล่าเรื่องความสำเร็จของคุณ",
        "QuestionPlaceholder": "ตัวอย่างเช่น สิ่งที่ทีมช่วยกันทำสำเร็จ"
    }
}
🟠400Bad Request
🟠401Unauthorized
🟠403Forbidden
🟠429Too Many Requests
🔴500Server Error
Modified at 2026-08-20 06:06:18
Previous
Get Employee Achievements
Next
Create Achievement Award Document
Built with