Documentation

Dealer Numbers

Reference for the dealer_numbers resource. Requests follow the conventions in Requests and Responses; fields you receive and may write are filtered by your user's permissions, so responses can contain a subset of the fields below.

Operations

Operation Request
List GET /{profile}/user/v4/dealer_numbers
Fetch GET /{profile}/user/v4/dealer_numbers/{id}

Not available as a standard REST operation for this resource: create, update, delete — such requests return 402 feature_not_enabled or 403 permission_denied.

How it works

dealer_numbers is the read-only catalog of dealer / central-station numbers — the valid dealer_number_id values on a customer sale (optional). Only name and number are returned; the internal note on the row is never exposed.

Visible to any caller holding Customer Sale Info.

curl "https://portal.securitytrax.com/acme/user/v4/dealer_numbers?number=123" \
  -H "Authorization: Bearer stx_acme_..."

Filters: name and number (each matches anywhere), active (true / false / all; default true). Sort by id, name, or number; GET /{id} fetches one, including an off number. Soft-deleted rows return 404 by id and are omitted from the list.

Note. The list matches the in-app picker: on numbers only unless you pass ?active=false or ?active=all. See Filtering collections.

Fields

Fields are grouped by the permission that gates them. A group you may not view is absent from responses; a group you may not write is rejected with 422 when sent in a write.

Dealer Number

View: Customer Sale Info.

Field Type Writable Validation
name string (nullable) Read-only max length 255
number string (nullable) Read-only max length 50
active boolean (nullable) Read-only
status string (nullable) Read-only one of: active, deleted

Pagination

The list endpoint uses client-controlled offset pagination: ?page= (1-based) and ?per_page= (default 25, max 100). The response mirrors meta.pagination (page, per_page, total, last_page) and sends an RFC5988 Link header; follow rel="next" to walk pages. See Pagination.

Filters

The list endpoint accepts these query-param filters: name, number, active. An unsupported filter parameter returns 422. See Filtering collections for matching semantics.

Sorting

GET .../dealer_numbers?sort= orders the list by: id, name, number. Prefix a field with - for descending; comma-separate for tie-breakers. An unsupported field returns 422. See Sorting collections.

Related

Ask about the docs
Ask about the docs
Answers from the SecurityTrax documentation

Ask about a feature, setting, or workflow.

Answers come from the documentation. Double-check anything important. AI features are subject to the AI Terms.