Nudgescribe API Reference
APIs
API types
API types
  • Authentication
  • Content
  • Campaign
APIs
API types
API types
  • Authentication
  • Content
  • Campaign
  1. Customer Profile Fields
  • Nudgescribe API
  • Authentication
    • Authentication
    • Authenticate
      POST
    • Re-Authenticate
      GET
  • Content
    • Customers
      • Customer Management
      • Upload and Validate Customer Data
      • Get pages
      • Get Customers
      • Delete Customers
    • Customer Groups
      • Customer Groups
      • Create Customer Group
      • Get Customer Groups
      • Update Customer Group
      • Delete Customer Group
    • Customer Profile Fields
      • Customer Profile Fields
      • Create a Custom Profile Field
        PUT
      • Get Customer Profile Fields for a Workspace
        POST
      • Update Custom Fields
        PATCH
      • Delete Custom Fields
        DELETE
  • Campaigns
    • Campaign Messages
      • Campaign Messages
      • Get All Accounts Campaigns
      • Publish Messages to Secure Storage
      • Get Campaign Messages Pages
      • Retrieve Published Messages
    • Campaign Reruns
      • Campaign Reruns
      • Get Campaign Rerun History
      • Get Run Messages
      • Initiate Campaign Rerun
  1. Customer Profile Fields

Delete Custom Fields

DELETE
https://client-api.nudgescribe.com/v1/cpf
ContentCustomerProfleCustomer Profile FieldsCPFDelete
Permanently removes custom fields from your workspace, including all associated customer data stored in those fields.
Allows cleanup of obsolete fields and supports data minimization practices for compliance with privacy regulations.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠400Bad Request
🔴500Server Error
🟠403Unauthorised
🟠401Missing Fields
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://client-api.nudgescribe.com/v1/cpf' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "workspace_id": "your-workspace-uuid",
    "fields": [
        {
            "field_id": "your-field-uuid"
        }
    ]
}'
Response Response Example
200 - Example 1
{
    "message": "string"
}
Modified at 2026-01-29 13:09:11
Previous
Update Custom Fields
Next
Campaign Messages
Built with