Changelog
History of changes to the SAMO-TRANS public API.
Newest entries on top. Every change to the public contract lands here.
For the compatibility rules, see Versioning.
v1.1
GET /employees— list company staff.GET /employees/{id}/proposals-count— how many listings name the employee as contact.PATCH /employees/{id}/status— activate or temporarily deactivate an employee.PATCH /employees/{id}— change role or display name.- New scopes
employees:readandemployees:write. Previously issued keys do not carry them — create a new key. contactPersonIdis now accepted when creating and updating a listing (batch included). Only the company owner and employees with statusACTIVEare allowed.- Fixed:
includeInactiveonGET /proposals/searchused to read any non-empty value astrue, so evenincludeInactive=falsereturned closed listings. It is now read as written:true/1/yes/onenable it,false/0/no/offdisable it, and an unrecognised value behaves as if the parameter were absent. If your integration sentfalseand relied on getting closed listings back, it will now receive a different set — sendtrueexplicitly.
v1.0
The first public release of the API.
Dictionaries
GET /reference/countries,/reference/regions— geography.GET /reference/car-types,/load-types,/permits,/currencies,/payment-types— code dictionaries with labels in five languages.GET /localities/search— locality search, the source of routeosmIds.
Exchange
GET /proposals/search— search the whole exchange with the web app's filters, plusupdatedSincefor incremental sync.GET /proposals/{id}— listing detail.GET /companies/{id},GET /companies/{id}/reviews— counterparty profile and approved reviews.
Your own listings
POST /proposals/cargo,POST /proposals/transport— creation.POST /proposals/batch— up to 25 listings per request with a per-item result.GET /proposals/my— listings of the company the key belongs to.PATCH /proposals/{id},POST /proposals/{id}/bump,/archive,/restore,DELETE /proposals/{id}.
Platform
- Authentication with
samo_live_keys carryingreference:read,proposals:readandproposals:writescopes plus an optional IP allowlist. - Per-key rate limits with
X-RateLimit-*headers and the stablerate_limited/quota_exceededcodes. Idempotency-Keysupport for safe write retries.- Webhooks for
proposal.created/updated/deletedandproposal.matched, signed withX-Samo-Signature. - The stable error envelope
{ error: { code, message, requestId } }.