# Get carrier factor Retrieve a single carrier factor by its unique identifier. Carrier factors represent factoring companies that provide payment services. Endpoint: GET /carrier-factors/{id} Version: 1.0.0 Security: BearerAuth ## Path parameters: - `id` (string, required) Resource ID (UUID) or client key Example: "550e8400-e29b-41d4-a716-446655440000" ## Response 200 fields (application/json): - `id` (string, required) Unique carrier factor identifier Example: "550e8400-e29b-41d4-a716-446655440000" - `companyName` (string, required) Factoring company legal name Example: "Capital Factoring Services Inc" - `key` (string,null) Client-defined reference identifier Example: "ERP-FACTOR-001" - `email` (string,null) Primary email address Example: "accounting@capitalfactoring.com" - `phoneNumber` (string,null) Primary phone number Example: "+1-555-234-5678" - `addressLine1` (string,null) Primary street address Example: "789 Finance Ave" - `addressLine2` (string,null) Secondary address line (suite, floor, etc.) Example: "Suite 500" - `city` (string,null) City name Example: "Dallas" - `state` (string,null) State or province Example: "TX" - `country` (string,null) Country code or name Example: "USA" - `zipCode` (string,null) Postal/ZIP code Example: "75201" - `bankName` (string,null) Bank name Example: "Chase Bank" - `bankAddress` (string,null) Bank address Example: "123 Bank Street, Dallas, TX 75201" - `accountName` (string,null) Bank account holder name Example: "Capital Factoring Services Inc" - `accountNumber` (string,null) Bank account number Example: "****1234" - `abaAch` (string,null) ABA/ACH routing number for electronic transfers Example: "021000021" - `wire` (string,null) Wire transfer routing number Example: "026009593" - `swiftCode` (string,null) SWIFT/BIC code for international transfers Example: "CHASUS33" - `eftInstitution` (string,null) EFT institution number (Canadian banking) Example: "001" - `eftTransit` (string,null) EFT transit number (Canadian banking) Example: "00010" - `clabe` (string,null) CLABE number (Mexican banking identifier) Example: "012180001234567897" - `currency` (string,null) Preferred currency code (ISO 4217) Example: "USD" - `paymentTerm` (any) Payment terms for this factoring company - `createdAt` (string, required) When the carrier factor was created Example: "2025-01-15T10:00:00Z" - `updatedAt` (string, required) When the carrier factor was last updated Example: "2025-01-15T14:30:00Z" - `deletedAt` (string,null) When the carrier factor was soft deleted (null if active) ## Response 400 fields (application/json): - `error` (string, required) Error code - `message` (string, required) Human-readable error message ## Response 401 fields (application/json): - `error` (string, required) Error code - `message` (string, required) Human-readable error message ## Response 404 fields (application/json): - `error` (string, required) Error code - `message` (string, required) Human-readable error message ## Response 500 fields (application/json): - `error` (string, required) Error code - `message` (string, required) Human-readable error message