Owner¶
Warning
This API is deprecated in favor of version 2 which allows unified recovery of fiber and copper services. This documentation should in no case be used as a basis for new developments. You are welcome to change your connectors now.
The owner field is a dictionary containing the end customer’s identification information.
Different types of end customers are available:
Type  | 
Description  | 
|---|---|
  | 
Company with a SIRET code  | 
  | 
Company creation in progress  | 
  | 
Natural person  | 
owner field¶
Available fields are listed below:
Field name  | 
Type  | 
Description  | 
|---|---|---|
type  | 
string  | 
Type of owner. The owner can be registered (  | 
name  | 
string  | 
Company name  | 
siret  | 
string  | 
Company’s SIRET code  | 
fist_name  | 
string  | 
First name  | 
last_name  | 
string  | 
Last name  | 
Examples¶
Example of owner with type registered (registrated):
{
    "type": "registered",
    "name": "Doe & Co",
    "siret": "81352886600029",
}
Example of owner with type unregistered (unregistrated):
{
    "type": "unregistered",
    "name": "Doe & Co",
}
Example of owner with type individual:
{
    "type": "individual",
    "first_name": "John",
    "last_name": "Doe",
}