Contents x
- Getting Started
- Guides
- Connecting to Server API (Restful)
- Extend Comm100 by Apps
- Mobile SDK
- Bot Integration
- SSO (Single Sign-On)
- VoIP Integration
- Embed Comm100 into other system
- Custom CSS
- Apps
- Server API (Restful) Reference
- Introduction
- Authentication
- Contact
- LiveChat
- Agent Private Message
- Audio & Video Chat
- Auto Distribution
- Auto Invitation
- Banned Visitor
- Banned IP
- Campaign
- Chat
- Custom Variable
- Custom Variable Config
- Chat Server
- Conversion Action
- Dynamic Campaign
- Field
- Installation
- Integration Calendly
- Offline Message
- Real Time
- Segment
- Segment Config
- Secure Forms
- Screen Sharing Config
- Shift
- Shift Config
- Visitor History
- Visitor Single Sign-On (SSO)
- Webhook
- Wrapup Category Config
- Wrap-Up Field
- Bot
- Agent Assist
- Agent Assist Learning Question
- Agent Assist Synonym
- Chatbot
- Chatbot Canned Quick Reply
- Chatbot Entity
- Chatbot Intent
- Chatbot Engine
- Chatbot Intent Answer
- Chatbot Action
- Chatbot Intent Category
- Chatbot Intent Question
- Chatbot Learning Question
- Chatbot Message When A Visitor Start A Chat
- Chatbot Message When Not Helpful
- Chatbot Message When Providing Possible Answer
- Chatbot No Answer Message
- Chatbot Smart Trigger
- Chatbot Generative Answers Source
- Chatbot Generative Answers Content
- Prebuilt Entity
- Task Bot
- Taskbot Booked Calendly Meeting
- Taskbot Version
- Bot Message API
- Bot Session API
- VoiceBot
- Ticketing
- KB
- Global Setting
- Action Type
- Agent
- Custom Agent Away Status
- Audit Log
- Agent Single Sign-On Config
- Credit Card Masking Config
- Department
- Login IP Allowlist
- Auto Translation
- Module
- Password Policy Config
- Permission
- Private Canned Message
- Private Canned Message Category
- Public Canned Message
- Public Canned Message Category
- Restricted Words Config
- Role
- Role Config
- Site Profile
- System Avatar
- Visitor
- Department Config
- Secure Forms
- Reporting
- Visitor Side API (JavaScript) Reference
- Partner API Reference
Credit Card Masking Config
Article summary
Did you find this summary helpful?
Thank you for your feedback
Credit Card Masking Config
Credit Card Masking Config
- Credit Card Masking Config ManageGET global/creditCardMaskingConfig
- Get a single Credit Card Masking ConfigPOST global/creditCardMaskingConfig:disable
- Disable the Credit Card Masking ConfigPOST global/creditCardMaskingConfig:enable
- Enable the Credit Card Masking ConfigPUT global/creditCardMaskingConfig
- Update the Credit Card Masking ConfigDELETE global/creditCardMaskingConfig
- Remove the Credit Card Masking Config
Credit Card Masking Config JSON Format
Credit Card Masking Config is represented as simple flat JSON objects with the following keys:
Name | Type | Description |
---|---|---|
siteId | integer | Id of the site. |
isEnabled | bool | Whether Credit Card Masking is enabled or not. |
Get a single Credit Card Masking Config
GET global/creditCardMaskingConfig
Parameters:
No Parameters
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/creditCardMaskingConfig \
-X 'GET' \
-H 'Authorization: Bearer {access_token}' \
Shell
Response:
HTTP/1.1 200 OK
{
"siteId": 10000,
"isEnabled": false
}
JSON
Disable the Credit Card Masking Config
POST global/creditCardMaskingConfig:disable
Parameters:
No Parameters
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/creditCardMaskingConfig:disable \
-X 'POST' \
-H 'Authorization: Bearer {access_token}' \
Shell
Response:
HTTP/1.1 200 OK
{
"siteId": 10000,
"isEnabled": false
}
JSON
Enable the Credit Card Masking Config
POST global/creditCardMaskingConfig:enable
Parameters:
No Parameters
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/creditCardMaskingConfig:enable \
-X 'POST' \
-H 'Authorization: Bearer {access_token}' \
Shell
Response:
HTTP/1.1 200 OK
{
"siteId": 10000,
"isEnabled": true
}
JSON
Update the Credit Card Masking Config
PUT global/creditCardMaskingConfig
Parameters:
Name | Type | in | Required | Description |
---|---|---|---|---|
isEnabled | bool | body | no | Whether Credit Card Masking is enabled or not. |
Response:
Example
Sample Request:
curl https://api11.comm100.io/v4/global/creditCardMaskingConfig \
-X 'PUT' \
-H 'Authorization: Bearer {access_token}' \
-H 'Content-Type: application/json' \
-D '{"isEnabled":false}'
Shell
Response:
HTTP/1.1 200 OK
{
"siteId": 10000,
"isEnabled": false
}
JSON
Remove the Credit Card Masking Config
DELETE global/creditCardMaskingConfig
Parameters:
No Parameters
Response:
No Content
Example
Sample Request:
curl https://api11.comm100.io/v4/global/creditCardMaskingConfig \
-X 'DELETE' \
-H 'Authorization: Bearer {access_token}' \
Shell
Response:
HTTP/1.1 204 No Content
Was this article helpful?
Thank you for your feedback! Our team will get back to you
How can we improve this article?
Your feedback
Comment
Comment (Optional)
Character limit : 500
Please enter your comment
Email (Optional)
Email
Please enter a valid email