- Getting Started
- Overview
- Authentication
- Pagination
- Querying and Sorting
- Rate Limit
- Scope
- Identity
- Activity
- Analytics
- Attachment
- Customer Table
- Create Customer TablePOST
- Get All Customer TablesGET
- Get Count of All Customer TablesGET
- Get Customer Table by IDGET
- Patch Customer Table Attributes by IDPATCH
- Delete Customer Table by IDDELETE
- Add header to Customer TablePOST
- Get all Customer Table HeadersGET
- Get Customer Table Header by IDGET
- Patch Customer Table Header Attributes by IDPATCH
- Delete Customer Table Header by IDDELETE
- Add Record to Customer TablePOST
- Get All Records in Customer TableGET
- Get Count of All Records in Customer TableGET
- Get Record in Customer Table by IDGET
- Filter Records in Customer TablePOST
- Count of Filtered Records in Customer TablePOST
- Patch Record Attributes in Customer Table by IDPATCH
- Delete Record in Customer Table by IDDELETE
- Card
- User Invite
- Global User Invite
- Identities
- Company
- Company Settings
- Global User
- Get All Global Users
- Get Count Of All Global Users
- Sign Up Global User
- Resend Confirmation Passcode
- Confirm Sign Up
- Sign In
- Refresh Token
- Change password
- Initiate Forward Password
- Confirm Forgot Password
- Get Global User By Email
- Get Global User by Token
- Add Mobile App Device Token
- Remove Mobile App Device Token
- Get Global User By ID
- Patch Global User Attributes
- Delete Global User By ID
- Local User
- Security Group
- Get all Security Groups
- Create Security Group
- Filter Security Groups
- Add Local User in Security Group
- Remove Local User in Security Group
- Add User Group in Security Group
- Remove User Group in Security Group
- Check if Local User can perform Action on Feature
- Check if Local User can perform Action on Feature Batch
- Get All Actions Local User can perform on feature
- Get all Security Groups by Feature & Action
- Get Security Group by ID
- Get Security Group by ID Copy
- User Group
- Get all User Groups
- Create User Group
- Filter User Groups
- Add Local User to User Group
- Remove Local User from User Group
- Add User Group to User Group
- Remove Local User from User Group Copy
- Check Local User Membership in User Group
- Get all User Groups a Local User is member of
- Get all User Groups a Local User is directly member of
- Get all User Groups a User Group is member of
- Create User Group by ID
- Patch User Group Attributes by ID
- Delete User Group by ID
- Template
- Create Template
- Create Template from System Template
- Get All Templates in Category
- Get Count of All Templates in Category
- Filter All Templates in Category
- Count of Filtered Templates in Category
- Get Templates by ID in Category
- Resolve Template by ID
- Patch Templates Attributes by ID in Category
- Delete Templates by ID in Category
- Schedulable Trigger
- User Todo
- Workflow
Patch Record Attributes in Customer Table by ID
QAL
QAL
PATCH
/v1/customerTables/{customerTableId}/records/{customerTableRecordId}
Request
Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Path Params
customerTableId
stringÂ
required
Example:
ID of customer table
customerTableRecordId
stringÂ
required
Example:
ID of customer table record to patch
Body Params application/json
headerToContentMap
objectÂ
required
tags
array[string]
optional
Example
{
"headerToContentMap": {},
"tags": [
"string"
]
}
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 PATCH 'https://api.qal.eazy2biz.com/v1/customerTables/ID of customer table/records/ID of customer table record to patch' \
--header 'Content-Type: application/json' \
--header 'Authorization;' \
--data-raw ''
Responses
🟢200Success
application/json
Body
_id
stringÂ
required
tableId
stringÂ
required
tableHeaderContents
array[object (CustomerTableHeaderContentResponse) {2}]Â
required
header
objectÂ
CustomerTableHeader
content
string  | integer  | boolean  | array  | object  | number  | nullÂ
required
tags
array[string]
required
details
objectÂ
Details
name
stringÂ
required
companyId
numberÂ
required
description
stringÂ
optional
metaData
objectÂ
MetaData
createdBy
stringÂ
required
lastUpdatedBy
stringÂ
required
createdDate
string <date-time>
required
lastUpdatedDate
string <date-time>
required
version
numberÂ
required
enabled
booleanÂ
required
Example
{
"_id": "string",
"tableId": "string",
"tableHeaderContents": [
{
"header": {
"_id": "string",
"name": "string",
"headerType": "NUMBER",
"helpText": "string",
"validations": [
{
"headerValidationType": "REQUIRED",
"validationValue": "string"
}
]
},
"content": "string"
}
],
"tags": [
"string"
],
"details": {
"name": "string",
"companyId": 0,
"description": "string"
},
"metaData": {
"createdBy": "string",
"lastUpdatedBy": "string",
"createdDate": "2019-08-24T14:15:22Z",
"lastUpdatedDate": "2019-08-24T14:15:22Z",
"version": 0
},
"enabled": true
}
Modified at 2024-07-08 18:07:14