Specific request
Template file for requesting a FON quote
Download the template file for requesting a FON quote.
GET /api/v1/specific_request/fon/sites/template/download/
Request Field Parameters
No parameters
Response
CSV file containing the template for requesting a FON quote.
| Header |
Value |
| Content-Type |
text/csv |
Creating a request for a FON offer review
Creating a request for a FON offer review.
POST /api/v1/v1/specific_request/fon/
Request Field Parameters
| Name |
Type |
Description |
Required |
| project_id |
string |
Associated project identifier |
No |
| end_customer_name |
string |
End customer name |
No |
| business_sector |
string |
End customer's sector of activity |
No |
| expected_response_date |
string |
Expected response date (minimum response time of 5 working days) |
No |
| note |
string |
Additional information for the request |
No |
Exemple
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire"
}
Response
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "",
"trace_file": "",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
Updating a request for a FON offer review
Updating a request for a FON offer review in the status created.
PATCH /api/v1/specific_request/fon/{id}/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Request Field Parameters
| Name |
Type |
Description |
Required |
| project_id |
string |
Associated project identifier |
No |
| end_customer_name |
string |
End customer name |
No |
| business_sector |
string |
End customer's sector of activity |
No |
| expected_response_date |
string |
Expected response date (minimum response time of 5 working days) |
No |
| note |
string |
Additional information for the request |
No |
Exemple
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire"
}
Response
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "",
"trace_file": "",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
Deleting a request for a FON offer review
Deleting a request for a FON offer review in the status created.
DELETE /api/v1/specific_request/fon/{id}/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
| Name |
Type |
Description |
| detail |
string |
If the deletion was successful |
Upload/Update the template file completed for the FON offer review request
Upload/Update the template file completed for the FON offer review request (replaces the file if it already exists).
POST /api/v1/specific_request/fon/{id}/sites/upload/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Request Field Parameters
| Name |
Type |
Description |
Required |
| file |
File |
Fichier template renseigné (csv) |
Yes |
Response
Details of the request to review the FON offer
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "sites_QO_20250926_00000001.csv",
"trace_file": "",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
Retrieving the template file completed for the request to review a FON offer
Retrieving the template file completed, uploaded previously.
GET /api/v1/specific_request/fon/{id}/sites/download/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
CSV file containing the completed template file, uploaded previously.
| Header |
Value |
| Content-Type |
text/csv |
Deleting of the template file completed for the request to review a FON offer
Deleting of the template file completed, uploaded previously.
DELETE /api/v1/specific_request/fon/{id}/sites/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
| Name |
Type |
Description |
| detail |
string |
If the deletion was successful |
Upload/Update the link path file for a request to review a FON offer
Upload/Update the link path file for a request to review a FON offer (replaces the file if it already exists).
POST /api/v1/specific_request/fon/{id}/trace/upload/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Request Field Parameters
| Name |
Type |
Description |
Required |
| file |
File |
Link trace file (kmz) |
Yes |
Response
Details of the request to review the FON offer
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "myfile_sites_QO_20250926_00000001.csv",
"trace_file": "myfile_trace_QO_20250926_00000001.kmz",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
Retrieving the link trace file for a request to review a FON offer
Retrieving the link trace file, uploaded previously.
GET /api/v1/specific_request/fon/{id}/trace/download/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
KMZ file containing the link trace file, uploaded previously.
| Header |
Value |
| Content-Type |
application/vnd.google-earth.kmz |
Deleting of the link trace file for a request to review a FON offer
SDeleting of the link trace file, uploaded previously.
DELETE /api/v1/specific_request/fon/{id}/trace/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
| Name |
Type |
Description |
| detail |
string |
If the deletion was successful |
Confirmation of request to review a FON offer
Confirmation of request to review a FON offer.
PATCH /api/v1/specific_request/fon/{id}/confirm/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "confirmed",
"sites_file": "myfile_sites_QO_20250926_00000001.csv",
"trace_file": "myfile_trace_QO_20250926_00000001.kmz",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
Retrieving the requests for a FON offer review
Retrieving the requests for a FON offer review.
GET /api/v1/specific_request/fon/
Request Field Parameters
No parameters
Response
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"page_size": 10,
"count": 2,
"next_page": null,
"previous_page": null,
"results": [
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "",
"trace_file": "",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
},
{
"project_id": "PRJ2",
"end_customer_name": "NAME",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "84a97b5f-7596-4e11-a6a0-bb9837a5da32",
"reference": "QO_20250926_00000002",
"state": "confirmed",
"sites_file": "myfile_sites_QO_20250926_00000002.csv",
"trace_file": "myfile_trace_QO_20250926_00000002.kmz",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}
]
}
Retrieving details of a request for a FON offer review
Retrieving details of a request for a FON offer review.
GET /api/v1/specific_request/fon/{id}/
URL parameters
| Name |
Type |
Description |
| id |
string |
Study request identifier |
Response
| Name |
Type |
Description |
| project_id |
string |
Associated project identifier |
| end_customer_name |
string |
End customer name |
| business_sector |
string |
End customer's sector of activity |
| expected_response_date |
string |
Expected response date |
| note |
string |
Additional information for the request |
| id |
string |
Request identifier |
| reference |
string |
Request reference |
| state |
string |
Current state of the request |
| sites_file |
string |
Template file completed for the request |
| trace_file |
string |
Link trace file for the request |
| created_by |
string |
User who created the request |
| creation_date |
string |
Creation date |
{
"project_id": "PRJ",
"end_customer_name": "COVAGE",
"business_sector": "Commerce",
"expected_response_date": "2025-10-06",
"note": "Ceci est une information complémentaire",
"id": "9da5de35-c28e-41c7-92a4-aecb6f07eb52",
"reference": "QO_20250926_00000001",
"state": "acknowledged",
"sites_file": "",
"trace_file": "",
"created_by": "john-doe@test.fr",
"creation_date": "2025-09-26T14:04:40.756+02:00"
}