Nudgescribe API Reference
APIs
API types
  • Authentication
  • Content
  • Campaign
APIs
API types
  • Authentication
  • Content
  • Campaign
  1. Customers
  • Nudgescribe API
  • Authentication
    • Authentication
    • Authenticate
      POST
    • Re-Authenticate
      GET
  • Content
    • Customers
      • Customer Management
      • Upload and Validate Customer Data
        POST
      • Get pages
        POST
      • Get Customers
        POST
      • Update Customers
        PATCH
      • Delete Customers
        DELETE
    • 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
      • Get Customer Profile Fields for a Workspace
      • Update Custom Fields
      • Delete Custom Fields
  • Campaigns
    • Campaigns and Campaign Messages
    • Get All Accounts Campaigns
      POST
    • Publish Messages to Secure Storage
      POST
    • Retrieve Published Messages
      POST
    • Get Campaign Messages Pages
      POST
  1. Customers

Update Customers

PATCH
https://client-api.dev.nudgescribe.com/v1/customer
ContentCustomersCustomer ManagementUpdate
Updates existing customer records by matching unique identifiers, with support for both bulk CSV updates and individual customer modifications.
Enables your application to keep customer data current by updating records as information changes, while maintaining data security and integrity.

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
🟠401Unauthorised
🔴500Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://client-api.dev.nudgescribe.com/v1/customer' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "customer_data": {
      "unique_id": "customer-123",
      "email": "updated@example.com",
      "customer_type": "Premium"
    },
    "workspace_id": "550e8400-e29b-41d4-a716-446655440001",
    "customer_group_id": "550e8400-e29b-41d4-a716-446655440000"
  }'
Response Response Example
200 - Example 1
{
    "jobId": "hostname/account-id/update_customers/job-uuid",
    "message": "Update queued"
}
Modified at 2025-09-12 12:52:39
Previous
Get Customers
Next
Delete Customers
Built with