Linking your software to a company

Case of a company already existing in Mobilic

You can communicate your client_id to a manager of this company. He will then be able to enter it in his manager console in Mobilic:

Case of a non existing company in Mobilic

You can create a company in Mobilic and be automatically linked to it, by making an API call to the endpoint /protected:

mutation {
    company{
    softwareRegistration(clientId: 156432124,
                         usualName: "Nom de la société",
                         siren: "110068012",
                         siret: "12234567005"){
        id
        name
    }
  }
}

Last updated