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

registrated

Company with a SIRET code

unregistrated

Company creation in progress

individual

Natural person

owner field

Available fields are listed below:

Field name

Type

Description

type

string

Type of owner. The owner can be registered (registrated), unregistered (unregistrated) or individual

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",
}