v49

latestOpenAPI 3.0.0raw.githubusercontent.com2024-12-22168107389.8 KB
projects

Create a project

post/projects

Request body

namestring required

The name of the project

id_organizationstring

The organization ID

id_userstring required

The user ID

Example request

{
  "name": "Project Name",
  "id_organization": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
  "id_user": "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
}

Response

id_projectstring required

Unique identifier for the project

namestring required

Name of the project

sync_modestring required

Synchronization mode of the project

pull_frequencynumber

Frequency of pulling data in seconds

redirect_urlstring

Redirect URL for the project

id_userstring required

User ID associated with the project

id_connector_setstring required

Connector set ID associated with the project

Example response

{
  "id_project": "123e4567-e89b-12d3-a456-426614174000",
  "name": "My Project",
  "sync_mode": "automatic",
  "pull_frequency": 3600,
  "redirect_url": "https://example.com/redirect",
  "id_user": "123e4567-e89b-12d3-a456-426614174001",
  "id_connector_set": "123e4567-e89b-12d3-a456-426614174002"
}