Récupérer les infos applicatives de l'entreprise courante

GET /company/app-infos

Récupère les informations applicatives (CompanyApp) de l'entreprise actuellement sélectionnée.

Informations retournées:

  • Configuration de l'application
  • Modules activés
  • Limites et quotas
  • Paramètres de personnalisation

Responses

  • 200 application/json

    Informations applicatives de l'entreprise courante

    Hide response attributes Show response attributes object
    • _id string

      Unique identifier for the company app

    • company string

      Reference to the company

    • containerId string

      Container ID for storage

    • containerSize number

      Size of the container

    • containerPrivateId string

      Private container ID for storage

    • containerPrivateSize number

      Size of the private container

    • nbMailsSent number

      Number of emails sent

    • options object

      Company options

      Hide options attributes Show options attributes object
      • api boolean

        Whether API access is enabled

      • fec boolean

        Whether FEC export is enabled

    • domainVerify string

      Domain verification status

      Values are waiting, verify, or none.

    • nbCreatedInvoices number

      Number of invoices created

    • nbCreatedQuotes number

      Number of quotes created

    • nbCreatedReceipts number

      Number of receipts created

    • versionPackActive string

      Reference to active version pack

    • versions array[string]

      List of version references

    • subscribedSince string(date-time)

      Date when the company subscribed

    • stripeCustomerId object
      Hide stripeCustomerId attributes Show stripeCustomerId attributes object
      • prod string

        Production Stripe customer ID

      • preprod string

        Pre-production Stripe customer ID

      • dev string

        Development Stripe customer ID

    • createdAt string(date-time)

      Date when the company app was created

    • updatedAt string(date-time)

      Date when the company app was last updated

  • 403

    Non autorisé - Aucune entreprise sélectionnée ou droits insuffisants

GET /company/app-infos
curl \
 --request GET 'https://wuro.pro/api/v3.2/company/app-infos' \
 --header "X-APP-ID: $API_KEY" \
 --header "X-APP-SECRET: $API_KEY"
Response examples (200)
{
  "_id": "string",
  "company": "string",
  "containerId": "string",
  "containerSize": 42.0,
  "containerPrivateId": "string",
  "containerPrivateSize": 42.0,
  "nbMailsSent": 42.0,
  "options": {
    "api": true,
    "fec": true
  },
  "domainVerify": "waiting",
  "nbCreatedInvoices": 42.0,
  "nbCreatedQuotes": 42.0,
  "nbCreatedReceipts": 42.0,
  "versionPackActive": "string",
  "versions": [
    "string"
  ],
  "subscribedSince": "2025-05-04T09:42:00Z",
  "stripeCustomerId": {
    "prod": "string",
    "preprod": "string",
    "dev": "string"
  },
  "createdAt": "2025-05-04T09:42:00Z",
  "updatedAt": "2025-05-04T09:42:00Z"
}