> For the complete documentation index, see [llms.txt](https://developer.usemultiplier.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.usemultiplier.com/api-reference/partner-management/customer-users.md).

# Customer Users

Manage customer user accounts and access

## List all customer users

> Retrieves a paginated list of all users associated with the customer.\
> Results are returned in descending order by creation date (newest first).<br>

```json
{"openapi":"3.0.1","info":{"title":"Multiplier Public REST API","version":"1.0.0"},"tags":[{"name":"Customer Users","description":"Manage customer user accounts and access"}],"servers":[{"url":"https://api.usemultiplier.com","description":"Production API / Partner Sandbox"},{"url":"https://release-api-gateway.api.usemultiplier.com","description":"MPL internal release environment"},{"url":"https://api-gateway.api.acc.staging.usemultiplier.com","description":"MPL internal staging"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","description":"JWT Bearer token authentication.\n\nTo authenticate:\n1. Obtain a JWT token from your authentication endpoint\n2. Click the \"Authorize\" button above\n3. Enter your token in the format: your-jwt-token\n4. Click \"Authorize\" to apply to all requests\n\nThe token will be automatically included in the Authorization header\nas: Authorization: Bearer {token}\n","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"StrategicPartner_CustomerUserListResponse":{"required":["data","pagination"],"type":"object","properties":{"data":{"type":"array","description":"List of customer users","items":{"$ref":"#/components/schemas/StrategicPartner_CustomerUserResponse"}},"pagination":{"$ref":"#/components/schemas/StrategicPartner_Pagination"}}},"StrategicPartner_CustomerUserResponse":{"required":["customerId","email","id","role"],"type":"object","properties":{"id":{"type":"string","description":"Unique customer user identifier"},"firstName":{"type":"string","description":"User's first name"},"lastName":{"type":"string","description":"User's last name"},"email":{"type":"string","description":"User's email address","format":"email"},"role":{"type":"string","description":"User's role within the customer:\n- ADMIN: Administrator user to fully manage customer account\n- BILLING_ADMIN: Billing administrator user to manage customer billing\n- PAYROLL_ADMIN: Payroll administrator user to manage customer payroll\n- HR_ADMIN: HR administrator user to manage customer HR\n","enum":["ADMIN","BILLING_ADMIN","PAYROLL_ADMIN","HR_ADMIN","MANAGER"]},"customerId":{"type":"string","description":"Customer ID this user belongs to"}}},"StrategicPartner_Pagination":{"required":["page","pageSize","totalCount"],"type":"object","properties":{"page":{"minimum":1,"type":"integer","description":"Current page number (1-indexed)"},"pageSize":{"maximum":100,"minimum":1,"type":"integer","description":"Number of items per page"},"totalCount":{"minimum":0,"type":"integer","description":"Total number of items across all pages"},"totalPages":{"minimum":0,"type":"integer","description":"Total number of pages (calculated from totalCount and pageSize)"}}},"StrategicPartner_ErrorResponse":{"required":["code","correlationId","message","path","timestamp"],"type":"object","properties":{"timestamp":{"type":"string","description":"ISO-8601 UTC timestamp of when the error occurred","format":"date-time"},"code":{"type":"string","description":"HTTP status code category:\n- BAD_REQUEST: 400 - request validation or input error\n- UNAUTHORIZED: 401 - authentication failure\n- FORBIDDEN: 403 - authorization failure\n- NOT_FOUND: 404 - resource not found\n- CONFLICT: 409 - resource conflict\n- INTERNAL_SERVER_ERROR: 500 - unexpected server error\n- SERVICE_UNAVAILABLE: 503 - service unavailable\n"},"message":{"type":"string","description":"Human-readable summary of the error"},"path":{"type":"string","description":"The request path that caused the error"},"correlationId":{"type":"string","description":"Correlation ID for tracing this error across systems"},"errors":{"type":"array","description":"Field-level error details. Present only for validation errors (VALIDATION_ERROR); omitted or null for all other error types.","items":{"$ref":"#/components/schemas/StrategicPartner_ErrorItem"}},"error":{"required":["code","message","type"],"type":"object","properties":{"type":{"type":"object","description":"Error category for client-side handling:\n- ValidationError: Request validation failed\n- NotFoundError: Resource doesn't exist\n- ConflictError: Resource already exists or state conflict\n- AuthenticationError: Invalid credentials\n- AuthorizationError: Insufficient permissions\n- ServerError: Unexpected server error\n","enum":["ValidationError","NotFoundError","ConflictError","AuthenticationError","AuthorizationError","ServerError"]},"code":{"type":"object","description":"Common codes:\n- VALIDATION_FAILED: Request validation failed\n- RESOURCE_NOT_FOUND: Resource doesn't exist\n- RESOURCE_ALREADY_EXISTS: Duplicate resource\n- RESOURCE_CONFLICT: State conflict\n- AUTHENTICATION_FAILED: Invalid credentials\n- AUTHORIZATION_FAILED: Insufficient permissions\n- INTERNAL_ERROR: Server error\n","enum":["VALIDATION_FAILED","RESOURCE_NOT_FOUND","RESOURCE_ALREADY_EXISTS","RESOURCE_CONFLICT","AUTHENTICATION_FAILED","AUTHORIZATION_FAILED","INTERNAL_ERROR"]},"message":{"type":"object","description":"Human-readable error message"},"details":{"type":"object","description":"Field-level validation errors (only present for validation_error type)","items":{"$ref":"#/components/schemas/StrategicPartner_FieldError"}}},"description":"Deprecated: use top-level fields (timestamp, code, message, path, correlationId, errors) instead. This field will be removed in a future version.","deprecated":true}},"description":"Standard error response for all API errors"},"StrategicPartner_ErrorItem":{"required":["message"],"type":"object","properties":{"property":{"type":"string","description":"Property path that caused the error, using dot notation"},"message":{"type":"string","description":"Human-readable error message"}},"description":"Individual error item"},"StrategicPartner_FieldError":{"required":["field","message"],"type":"object","properties":{"field":{"type":"string","description":"Field path using dot notation for nested fields"},"message":{"type":"string","description":"Human-readable error message for this field"}},"description":"Field-level validation error"}}},"paths":{"/v1/partner/customers/{customerId}/users":{"get":{"tags":["Customer Users"],"summary":"List all customer users","description":"Retrieves a paginated list of all users associated with the customer.\nResults are returned in descending order by creation date (newest first).\n","operationId":"customerUsersList","parameters":[{"name":"customerId","in":"path","description":"Customer ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}},{"name":"page","in":"query","description":"Page number (1-indexed)","required":false,"style":"form","explode":true,"schema":{"minimum":1,"type":"object","default":1}},{"name":"pageSize","in":"query","description":"Number of items per page","required":false,"style":"form","explode":true,"schema":{"maximum":100,"minimum":1,"type":"object","default":20}}],"responses":{"200":{"description":"Customer users retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_CustomerUserListResponse"}}}},"400":{"description":"Bad Request - Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"401":{"description":"Unauthorized - Missing or invalid authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"500":{"description":"Internal Server Error - Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}}}}}}}
```

## Create a customer user

> Creates a new user account for a customer.\
> \
> This endpoint provisions a user account with the specified role and associates it with the customer.\
> \
> \*\*Security:\*\*\
> \- Requires valid partner access token (Bearer token)\
> \
> \*\*Validation:\*\*\
> \- Email must be a valid email address\
> \- First name and last name are required\
> \- Role must be a valid CustomerUserRole enum value<br>

```json
{"openapi":"3.0.1","info":{"title":"Multiplier Public REST API","version":"1.0.0"},"tags":[{"name":"Customer Users","description":"Manage customer user accounts and access"}],"servers":[{"url":"https://api.usemultiplier.com","description":"Production API / Partner Sandbox"},{"url":"https://release-api-gateway.api.usemultiplier.com","description":"MPL internal release environment"},{"url":"https://api-gateway.api.acc.staging.usemultiplier.com","description":"MPL internal staging"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","description":"JWT Bearer token authentication.\n\nTo authenticate:\n1. Obtain a JWT token from your authentication endpoint\n2. Click the \"Authorize\" button above\n3. Enter your token in the format: your-jwt-token\n4. Click \"Authorize\" to apply to all requests\n\nThe token will be automatically included in the Authorization header\nas: Authorization: Bearer {token}\n","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"StrategicPartner_CustomerUserCreateRequest":{"required":["email","firstName","lastName","role"],"type":"object","properties":{"firstName":{"maxLength":100,"minLength":1,"type":"string","description":"User's first name"},"lastName":{"maxLength":100,"minLength":1,"type":"string","description":"User's last name"},"email":{"type":"string","description":"User's email address","format":"email"},"role":{"type":"string","description":"User's role within the customer:\n- ADMIN: Administrator user to fully manage customer account\n- BILLING_ADMIN: Billing administrator user to manage customer billing\n- PAYROLL_ADMIN: Payroll administrator user to manage customer payroll\n- HR_ADMIN: HR administrator user to manage customer HR\n","enum":["ADMIN","BILLING_ADMIN","PAYROLL_ADMIN","HR_ADMIN","MANAGER"]}}},"StrategicPartner_CustomerUserResponse":{"required":["customerId","email","id","role"],"type":"object","properties":{"id":{"type":"string","description":"Unique customer user identifier"},"firstName":{"type":"string","description":"User's first name"},"lastName":{"type":"string","description":"User's last name"},"email":{"type":"string","description":"User's email address","format":"email"},"role":{"type":"string","description":"User's role within the customer:\n- ADMIN: Administrator user to fully manage customer account\n- BILLING_ADMIN: Billing administrator user to manage customer billing\n- PAYROLL_ADMIN: Payroll administrator user to manage customer payroll\n- HR_ADMIN: HR administrator user to manage customer HR\n","enum":["ADMIN","BILLING_ADMIN","PAYROLL_ADMIN","HR_ADMIN","MANAGER"]},"customerId":{"type":"string","description":"Customer ID this user belongs to"}}},"StrategicPartner_ErrorResponse":{"required":["code","correlationId","message","path","timestamp"],"type":"object","properties":{"timestamp":{"type":"string","description":"ISO-8601 UTC timestamp of when the error occurred","format":"date-time"},"code":{"type":"string","description":"HTTP status code category:\n- BAD_REQUEST: 400 - request validation or input error\n- UNAUTHORIZED: 401 - authentication failure\n- FORBIDDEN: 403 - authorization failure\n- NOT_FOUND: 404 - resource not found\n- CONFLICT: 409 - resource conflict\n- INTERNAL_SERVER_ERROR: 500 - unexpected server error\n- SERVICE_UNAVAILABLE: 503 - service unavailable\n"},"message":{"type":"string","description":"Human-readable summary of the error"},"path":{"type":"string","description":"The request path that caused the error"},"correlationId":{"type":"string","description":"Correlation ID for tracing this error across systems"},"errors":{"type":"array","description":"Field-level error details. Present only for validation errors (VALIDATION_ERROR); omitted or null for all other error types.","items":{"$ref":"#/components/schemas/StrategicPartner_ErrorItem"}},"error":{"required":["code","message","type"],"type":"object","properties":{"type":{"type":"object","description":"Error category for client-side handling:\n- ValidationError: Request validation failed\n- NotFoundError: Resource doesn't exist\n- ConflictError: Resource already exists or state conflict\n- AuthenticationError: Invalid credentials\n- AuthorizationError: Insufficient permissions\n- ServerError: Unexpected server error\n","enum":["ValidationError","NotFoundError","ConflictError","AuthenticationError","AuthorizationError","ServerError"]},"code":{"type":"object","description":"Common codes:\n- VALIDATION_FAILED: Request validation failed\n- RESOURCE_NOT_FOUND: Resource doesn't exist\n- RESOURCE_ALREADY_EXISTS: Duplicate resource\n- RESOURCE_CONFLICT: State conflict\n- AUTHENTICATION_FAILED: Invalid credentials\n- AUTHORIZATION_FAILED: Insufficient permissions\n- INTERNAL_ERROR: Server error\n","enum":["VALIDATION_FAILED","RESOURCE_NOT_FOUND","RESOURCE_ALREADY_EXISTS","RESOURCE_CONFLICT","AUTHENTICATION_FAILED","AUTHORIZATION_FAILED","INTERNAL_ERROR"]},"message":{"type":"object","description":"Human-readable error message"},"details":{"type":"object","description":"Field-level validation errors (only present for validation_error type)","items":{"$ref":"#/components/schemas/StrategicPartner_FieldError"}}},"description":"Deprecated: use top-level fields (timestamp, code, message, path, correlationId, errors) instead. This field will be removed in a future version.","deprecated":true}},"description":"Standard error response for all API errors"},"StrategicPartner_ErrorItem":{"required":["message"],"type":"object","properties":{"property":{"type":"string","description":"Property path that caused the error, using dot notation"},"message":{"type":"string","description":"Human-readable error message"}},"description":"Individual error item"},"StrategicPartner_FieldError":{"required":["field","message"],"type":"object","properties":{"field":{"type":"string","description":"Field path using dot notation for nested fields"},"message":{"type":"string","description":"Human-readable error message for this field"}},"description":"Field-level validation error"}}},"paths":{"/v1/partner/customers/{customerId}/users":{"post":{"tags":["Customer Users"],"summary":"Create a customer user","description":"Creates a new user account for a customer.\n\nThis endpoint provisions a user account with the specified role and associates it with the customer.\n\n**Security:**\n- Requires valid partner access token (Bearer token)\n\n**Validation:**\n- Email must be a valid email address\n- First name and last name are required\n- Role must be a valid CustomerUserRole enum value\n","operationId":"customerUserCreate","parameters":[{"name":"customerId","in":"path","description":"Customer ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}}],"requestBody":{"description":"Customer user creation details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_CustomerUserCreateRequest"}}},"required":true},"responses":{"201":{"description":"Customer user created successfully","headers":{"Location":{"description":"URL to the created customer user resource","style":"simple","explode":false,"schema":{"type":"object","format":"uri"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_CustomerUserResponse"}}}},"400":{"description":"Bad Request - Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"401":{"description":"Unauthorized - Missing or invalid authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"409":{"description":"Conflict - Resource already exists or state conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"500":{"description":"Internal Server Error - Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}}}}}}}
```

## Get customer user details

> Retrieves detailed information about a specific customer user.\
> \
> \*\*Security:\*\*\
> \- Requires valid partner access token (Bearer token)<br>

```json
{"openapi":"3.0.1","info":{"title":"Multiplier Public REST API","version":"1.0.0"},"tags":[{"name":"Customer Users","description":"Manage customer user accounts and access"}],"servers":[{"url":"https://api.usemultiplier.com","description":"Production API / Partner Sandbox"},{"url":"https://release-api-gateway.api.usemultiplier.com","description":"MPL internal release environment"},{"url":"https://api-gateway.api.acc.staging.usemultiplier.com","description":"MPL internal staging"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","description":"JWT Bearer token authentication.\n\nTo authenticate:\n1. Obtain a JWT token from your authentication endpoint\n2. Click the \"Authorize\" button above\n3. Enter your token in the format: your-jwt-token\n4. Click \"Authorize\" to apply to all requests\n\nThe token will be automatically included in the Authorization header\nas: Authorization: Bearer {token}\n","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"StrategicPartner_CustomerUserResponse":{"required":["customerId","email","id","role"],"type":"object","properties":{"id":{"type":"string","description":"Unique customer user identifier"},"firstName":{"type":"string","description":"User's first name"},"lastName":{"type":"string","description":"User's last name"},"email":{"type":"string","description":"User's email address","format":"email"},"role":{"type":"string","description":"User's role within the customer:\n- ADMIN: Administrator user to fully manage customer account\n- BILLING_ADMIN: Billing administrator user to manage customer billing\n- PAYROLL_ADMIN: Payroll administrator user to manage customer payroll\n- HR_ADMIN: HR administrator user to manage customer HR\n","enum":["ADMIN","BILLING_ADMIN","PAYROLL_ADMIN","HR_ADMIN","MANAGER"]},"customerId":{"type":"string","description":"Customer ID this user belongs to"}}},"StrategicPartner_ErrorResponse":{"required":["code","correlationId","message","path","timestamp"],"type":"object","properties":{"timestamp":{"type":"string","description":"ISO-8601 UTC timestamp of when the error occurred","format":"date-time"},"code":{"type":"string","description":"HTTP status code category:\n- BAD_REQUEST: 400 - request validation or input error\n- UNAUTHORIZED: 401 - authentication failure\n- FORBIDDEN: 403 - authorization failure\n- NOT_FOUND: 404 - resource not found\n- CONFLICT: 409 - resource conflict\n- INTERNAL_SERVER_ERROR: 500 - unexpected server error\n- SERVICE_UNAVAILABLE: 503 - service unavailable\n"},"message":{"type":"string","description":"Human-readable summary of the error"},"path":{"type":"string","description":"The request path that caused the error"},"correlationId":{"type":"string","description":"Correlation ID for tracing this error across systems"},"errors":{"type":"array","description":"Field-level error details. Present only for validation errors (VALIDATION_ERROR); omitted or null for all other error types.","items":{"$ref":"#/components/schemas/StrategicPartner_ErrorItem"}},"error":{"required":["code","message","type"],"type":"object","properties":{"type":{"type":"object","description":"Error category for client-side handling:\n- ValidationError: Request validation failed\n- NotFoundError: Resource doesn't exist\n- ConflictError: Resource already exists or state conflict\n- AuthenticationError: Invalid credentials\n- AuthorizationError: Insufficient permissions\n- ServerError: Unexpected server error\n","enum":["ValidationError","NotFoundError","ConflictError","AuthenticationError","AuthorizationError","ServerError"]},"code":{"type":"object","description":"Common codes:\n- VALIDATION_FAILED: Request validation failed\n- RESOURCE_NOT_FOUND: Resource doesn't exist\n- RESOURCE_ALREADY_EXISTS: Duplicate resource\n- RESOURCE_CONFLICT: State conflict\n- AUTHENTICATION_FAILED: Invalid credentials\n- AUTHORIZATION_FAILED: Insufficient permissions\n- INTERNAL_ERROR: Server error\n","enum":["VALIDATION_FAILED","RESOURCE_NOT_FOUND","RESOURCE_ALREADY_EXISTS","RESOURCE_CONFLICT","AUTHENTICATION_FAILED","AUTHORIZATION_FAILED","INTERNAL_ERROR"]},"message":{"type":"object","description":"Human-readable error message"},"details":{"type":"object","description":"Field-level validation errors (only present for validation_error type)","items":{"$ref":"#/components/schemas/StrategicPartner_FieldError"}}},"description":"Deprecated: use top-level fields (timestamp, code, message, path, correlationId, errors) instead. This field will be removed in a future version.","deprecated":true}},"description":"Standard error response for all API errors"},"StrategicPartner_ErrorItem":{"required":["message"],"type":"object","properties":{"property":{"type":"string","description":"Property path that caused the error, using dot notation"},"message":{"type":"string","description":"Human-readable error message"}},"description":"Individual error item"},"StrategicPartner_FieldError":{"required":["field","message"],"type":"object","properties":{"field":{"type":"string","description":"Field path using dot notation for nested fields"},"message":{"type":"string","description":"Human-readable error message for this field"}},"description":"Field-level validation error"}}},"paths":{"/v1/partner/customers/{customerId}/users/{userId}":{"get":{"tags":["Customer Users"],"summary":"Get customer user details","description":"Retrieves detailed information about a specific customer user.\n\n**Security:**\n- Requires valid partner access token (Bearer token)\n","operationId":"customerUserGet","parameters":[{"name":"customerId","in":"path","description":"Customer ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}},{"name":"userId","in":"path","description":"Customer User ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}}],"responses":{"200":{"description":"Customer user details retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_CustomerUserResponse"}}}},"401":{"description":"Unauthorized - Missing or invalid authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"500":{"description":"Internal Server Error - Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}}}}}}}
```

## Delete a customer user

> Deletes a customer user account.\
> \
> This operation removes the user's association with the customer.\
> \
> \*\*Security:\*\*\
> \- Requires valid partner access token (Bearer token)<br>

```json
{"openapi":"3.0.1","info":{"title":"Multiplier Public REST API","version":"1.0.0"},"tags":[{"name":"Customer Users","description":"Manage customer user accounts and access"}],"servers":[{"url":"https://api.usemultiplier.com","description":"Production API / Partner Sandbox"},{"url":"https://release-api-gateway.api.usemultiplier.com","description":"MPL internal release environment"},{"url":"https://api-gateway.api.acc.staging.usemultiplier.com","description":"MPL internal staging"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","description":"JWT Bearer token authentication.\n\nTo authenticate:\n1. Obtain a JWT token from your authentication endpoint\n2. Click the \"Authorize\" button above\n3. Enter your token in the format: your-jwt-token\n4. Click \"Authorize\" to apply to all requests\n\nThe token will be automatically included in the Authorization header\nas: Authorization: Bearer {token}\n","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"StrategicPartner_ErrorResponse":{"required":["code","correlationId","message","path","timestamp"],"type":"object","properties":{"timestamp":{"type":"string","description":"ISO-8601 UTC timestamp of when the error occurred","format":"date-time"},"code":{"type":"string","description":"HTTP status code category:\n- BAD_REQUEST: 400 - request validation or input error\n- UNAUTHORIZED: 401 - authentication failure\n- FORBIDDEN: 403 - authorization failure\n- NOT_FOUND: 404 - resource not found\n- CONFLICT: 409 - resource conflict\n- INTERNAL_SERVER_ERROR: 500 - unexpected server error\n- SERVICE_UNAVAILABLE: 503 - service unavailable\n"},"message":{"type":"string","description":"Human-readable summary of the error"},"path":{"type":"string","description":"The request path that caused the error"},"correlationId":{"type":"string","description":"Correlation ID for tracing this error across systems"},"errors":{"type":"array","description":"Field-level error details. Present only for validation errors (VALIDATION_ERROR); omitted or null for all other error types.","items":{"$ref":"#/components/schemas/StrategicPartner_ErrorItem"}},"error":{"required":["code","message","type"],"type":"object","properties":{"type":{"type":"object","description":"Error category for client-side handling:\n- ValidationError: Request validation failed\n- NotFoundError: Resource doesn't exist\n- ConflictError: Resource already exists or state conflict\n- AuthenticationError: Invalid credentials\n- AuthorizationError: Insufficient permissions\n- ServerError: Unexpected server error\n","enum":["ValidationError","NotFoundError","ConflictError","AuthenticationError","AuthorizationError","ServerError"]},"code":{"type":"object","description":"Common codes:\n- VALIDATION_FAILED: Request validation failed\n- RESOURCE_NOT_FOUND: Resource doesn't exist\n- RESOURCE_ALREADY_EXISTS: Duplicate resource\n- RESOURCE_CONFLICT: State conflict\n- AUTHENTICATION_FAILED: Invalid credentials\n- AUTHORIZATION_FAILED: Insufficient permissions\n- INTERNAL_ERROR: Server error\n","enum":["VALIDATION_FAILED","RESOURCE_NOT_FOUND","RESOURCE_ALREADY_EXISTS","RESOURCE_CONFLICT","AUTHENTICATION_FAILED","AUTHORIZATION_FAILED","INTERNAL_ERROR"]},"message":{"type":"object","description":"Human-readable error message"},"details":{"type":"object","description":"Field-level validation errors (only present for validation_error type)","items":{"$ref":"#/components/schemas/StrategicPartner_FieldError"}}},"description":"Deprecated: use top-level fields (timestamp, code, message, path, correlationId, errors) instead. This field will be removed in a future version.","deprecated":true}},"description":"Standard error response for all API errors"},"StrategicPartner_ErrorItem":{"required":["message"],"type":"object","properties":{"property":{"type":"string","description":"Property path that caused the error, using dot notation"},"message":{"type":"string","description":"Human-readable error message"}},"description":"Individual error item"},"StrategicPartner_FieldError":{"required":["field","message"],"type":"object","properties":{"field":{"type":"string","description":"Field path using dot notation for nested fields"},"message":{"type":"string","description":"Human-readable error message for this field"}},"description":"Field-level validation error"}}},"paths":{"/v1/partner/customers/{customerId}/users/{userId}":{"delete":{"tags":["Customer Users"],"summary":"Delete a customer user","description":"Deletes a customer user account.\n\nThis operation removes the user's association with the customer.\n\n**Security:**\n- Requires valid partner access token (Bearer token)\n","operationId":"customerUserDelete","parameters":[{"name":"customerId","in":"path","description":"Customer ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}},{"name":"userId","in":"path","description":"Customer User ID","required":true,"style":"simple","explode":false,"schema":{"type":"object"}}],"responses":{"204":{"description":"Customer user deleted successfully"},"401":{"description":"Unauthorized - Missing or invalid authentication","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"404":{"description":"Not Found - Resource does not exist","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}},"500":{"description":"Internal Server Error - Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StrategicPartner_ErrorResponse"}}}}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.usemultiplier.com/api-reference/partner-management/customer-users.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
