---
uuid: edf0f2e5-6a4b-4bd9-9668-40926f4ff852
date_created: 2026-04-07T08:38:11.450Z
date_updated: 2026-04-13T14:44:25.075Z
versions:
  - v0.3405.0 (26177)
tags:
  - Salesman
  - Seller
  - Authentication
  - Go
routes:
  - GET /v0/salesman/{salesman_id}
---
# Release v0.3405.0

Introducing a new route to retrieve vendor information (first name, last name, email, IDs, agency, locales). This resource is only accessible to authenticated G.O users and supports multi-locale country management.

## Notes

## Highlights

* New `GET /v0/salesman/{salesman_id}` route to retrieve salesman information
* Authentication restricted to G.O users only
* Support for multiple locales for countries like Switzerland
* Return of salesman information including sales network, agency, and partner

## v0.3405.0 Details

This version introduces a new resource to retrieve detailed information about a salesman using their ID.

### New Salesman Route

The `GET /v0/salesman/{salesman_id}` route allows you to retrieve complete information about a salesman, including:

* Personal information (first name, last name, email)
* Identifiers (salesman\_id, partner\_id, sales\_network\_id)
* Associated agency (full name)
* List of authorized locales for this salesman

This route requires G.O authentication and expects the salesman ID as a path parameter, as well as an API key in the request header.

### Locale Management

The response includes an array of locales in ISO 639-1 (language) and ISO 3166-1 (country) format. The mapping takes into account countries with multiple locales, such as Switzerland, by returning all locales corresponding to the salesman's commercial country code.

### Response Example

```json
{
  "first_name": "John",
  "last_name": "Smith",
  "email": "johnsmith@gmail.com",
  "salesman_id": "123456789",
  "sales_network_id": "OPERA_00_P2T",
  "agency_full_name": "OPERA Agency",
  "partner_id": "CME12345",
  "locales": ["fr-FR"]
}
```

All returned fields are mandatory and guarantee the completeness of the salesman's information.

## Related routes

* GET /v0/salesman/{salesman\_id} — Retrieves seller information
