GET /company/{uid}

Récupère les détails d'une entreprise spécifique.

Path parameters

  • uid string Required

    ID de l'entreprise

Responses

  • 200 application/json

    Détails de l'entreprise

    Hide response attribute Show response attribute object
    • company object
      Hide company attributes Show company attributes object
      • _id string

        Unique identifier for the company

      • name string

        Name of the company

      • url string

        Unique URL identifier for the company

      • siren string

        SIREN number

      • siret string

        SIRET number

      • tva_number string

        VAT number

      • naf_ape string

        NAF/APE code

      • nic string

        NIC code

      • num_rcs string

        RCS registration number

      • num_trade_directory string

        Trade directory number

      • commercial_court string

        Commercial court

      • share_capital number

        Share capital amount

      • company_type string

        Reference to company type

      • company_type_name string

        Name of the company type

      • email string

        Company email

      • emailExpeditor string

        Email used as sender for communications

      • domain string

        Company domain

      • website string

        Company website URL

      • addresses array[object]

        List of company addresses

        Hide addresses attributes Show addresses attributes object
        • street string

          Street address

        • street_end string

          Additional street address information

        • zip_code string

          Zip code

        • city string

          City

        • country string

          Country

      • phones array[object]

        List of company phone numbers

        Hide phones attributes Show phones attributes object
        • type string

          Type of phone number

        • number string

          Phone number

        • main boolean

          Whether this is the main phone number

        • active boolean

          Whether this phone number is active

      • mobiles array[object]

        List of company mobile numbers

        Hide mobiles attributes Show mobiles attributes object
        • type string

          Type of mobile number

        • number string

          Mobile number

        • main boolean

          Whether this is the main mobile number

        • active boolean

          Whether this mobile number is active

      • cgv string

        Terms and conditions text

      • cgv_wuro boolean

        Whether to use Wuro's terms and conditions

      • company_include_cgv boolean

        Whether to include terms and conditions in documents

      • company_include_cgv_physical boolean

        Whether to include physical terms and conditions in documents

      • payment_delay_default number

        Default payment delay in days

      • validity_delay_default number

        Default validity delay for quotes in days

      • rate_late_penalties number

        Late payment penalty rate

      • state string

        State of the company

        Values are active, inactive, or deleted.

      • createdAt string(date-time)

        Date when the company was created

      • updatedAt string(date-time)

        Date when the company was last updated

  • 404

    Entreprise non trouvée

GET /company/{uid}
curl \
 --request GET 'https://wuro.pro/api/v3.2/company/{uid}' \
 --header "X-APP-ID: $API_KEY" \
 --header "X-APP-SECRET: $API_KEY"
Response examples (200)
{
  "company": {
    "_id": "string",
    "name": "string",
    "url": "string",
    "siren": "string",
    "siret": "string",
    "tva_number": "string",
    "naf_ape": "string",
    "nic": "string",
    "num_rcs": "string",
    "num_trade_directory": "string",
    "commercial_court": "string",
    "share_capital": 42.0,
    "company_type": "string",
    "company_type_name": "string",
    "email": "string",
    "emailExpeditor": "string",
    "domain": "string",
    "website": "string",
    "logo": "string",
    "addresses": [
      {
        "street": "string",
        "street_end": "string",
        "zip_code": "string",
        "city": "string",
        "country": "string"
      }
    ],
    "phones": [
      {
        "type": "string",
        "number": "string",
        "main": true,
        "active": true
      }
    ],
    "mobiles": [
      {
        "type": "string",
        "number": "string",
        "main": true,
        "active": true
      }
    ],
    "cgv": "string",
    "cgv_link": "string",
    "cgv_wuro": true,
    "company_include_cgv": true,
    "company_include_cgv_physical": true,
    "payment_delay_default": 42.0,
    "validity_delay_default": 42.0,
    "rate_late_penalties": 42.0,
    "state": "active",
    "createdAt": "2025-05-04T09:42:00Z",
    "updatedAt": "2025-05-04T09:42:00Z"
  }
}