v33

latestOpenAPI 3.1.0raw.githubusercontent.com2026-04-1770249709.0 KB
Representatives

Create a representative

Creates a new representative associated with an account. Representatives are individuals who have legal authority or significant responsibility within the business.

post/v1/representatives

Headers

request-idstring

Optional client generated identifier to trace and debug a request.

correlation-idstring

Optional client generated identifier to trace and debug a series of requests.

idempotency-keystring

Optional client generated value to use for idempotent requests.

Request body

account_idstring uuid required

The unique identifier of the account this representative is associated with.

first_namestring required

The first name of the representative.

last_namestring required

The last name of the representative.

dobstring date required

Date of birth for the representative in ISO 8601 format (YYYY-MM-DD).

ssn_last4string required

The last 4 digits of the representative's Social Security Number.

emailstring email required

The company email address of the representative.

mobile_numberstring required

The mobile phone number of the representative.

external_idstring nullable

Unique identifier for the representative in your database, used for cross-referencing between Straddle and your systems.

metadataobject nullable

Up to 20 additional user-defined key-value pairs. Useful for storing additional information about the represetative in a structured format.

Example request

{
  "dob": "1980-01-01",
  "ssn_last4": "1234",
  "email": "ron.swanson@pawnee.com",
  "mobile_number": "+12128675309"
}

Response

Created

response_type'object' | 'array' | 'error' | 'none' required

Indicates the structure of the returned content.

  • "object" means the data field contains a single JSON object.
  • "array" means the data field contains an array of objects.
  • "error" means the data field contains an error object with details of the issue.
  • "none" means no data is returned.

Example response

{
  "data": {
    "first_name": "Ron",
    "last_name": "Swanson",
    "dob": "1980-01-01",
    "ssn_last4": "1234",
    "email": "ron.swanson@pawnee.com",
    "mobile_number": "+12128675309"
  }
}