MyCumulus API 6.0

Version manual: 6.0

March 1, 2024


Table of contents

  Public API Functions

    Check back-end
    Utilities - Get API and back-end versions
    Utilities - Check Client Compatibility
    Utilities - Get UTC Time
    Utilities - Get Orthometric Height
    Utilities - Convert Geodetic Coordinates to Plane Coordinates
    Utilities - Convert list of Geodetic Coordinates to Plane Coordinates
    Utilities - Convert Plane Coordinates to Geodetic Coordinates
    Utilities - Convert list of Plane Coordinates to Geodetic Coordinates

    Location - Upload location of user
    Location - Get location of user
    Location - Delete location of user

    Users - Login
    Users - Logout
    Users - Retrieve (Admin)
    Users - Retrieve (Collaborator)
    Users - Update name and e-mail
    Users - Adding Collaborators
    Users - Signup of a Collaborator
    Users - Change Password
    Users - Change Password of Collaborator
    Users - Number of Collaborators
    Users - Get Collaborators
    Users - Grant Collaborator permission to create projects
    Users - Revoke Collaborator permission to create projects
    Users - Delete Collaborator (by Admin User)

    Projects - Create a project
    Projects - Update the project data
    Projects - Number of projects
    Projects - Retrieve projects (Admin User)
    Projects - Retrieve projects (Collaborator)
    Projects - Retrieve a Project
    Projects - Delete a Project
    Projects - Duplicate a Project
    Projects - Copy Project Template

    Project/Members - Add a user to a project.
    Project/Members - Remove a user from a project.
    Project/Members - Retrieve information of a member of a project.
    Project/Members - Retrieve the list of 'all members (users)' of the project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.
    Project/Members - Grant permissions to collaborator
    Project/Members - Revoke permissions from collaborator

    Templates - Create a form
    Templates - Update the form
    Templates - Number of forms in a project
    Templates - Retrieve the list of all forms of a project
    Templates - Retrieve a form
    Templates - Delete a form
    Templates - Duplicate a form
    Templates - Copy a form from domain project

    Styles - Create a style
    Styles - Update the style
    Styles - Retrieve styles
    Styles - Retrieve a style
    Styles - Delete a style
    Styles - Template and Style compatible
    Styles - List of compatible styles

    Features - Upload a feature
    Features - Update the feature
    Features - Number of features
    Features - Retrieve the list of all features
    Features - Retrieve a feature
    Features - Duplicate a feature
    Features - Duplicate multiple features
    Features - Delete a set of features
    Features - Search text
    Features - Search text in all projects/templates
    Features - Search extensive
    Features - Import CSV
    Features - Import IMKL

    Report Templates - Create a report template (no document included)
    Report Templates - Update the report template (no document included)
    Report Templates - Retrieve the list of all report templates
    Report Templates - Retrieve the list of all public report templates
    Report Templates - Retrieve a report template
    Report Templates - Delete a report template

    Create Report - Create a report
    Create Report - Get the status of the report generation
    Create Report - Get the list of generated reports
    Create Report - Set the indication that the report is downloaded
    Create Report - Delete the report

    Files - Upload a private file
    Files - Check if a private file exists
    Files - Download a private file
    Files - Delete a private file
    Files - Upload a public file
    Files - Check if a public file exists
    Files - Download a public file
    Files - Delete a public file


--- Public API functions: Utilities ---


Check back-end   

This is a simple call to check if you have access to the MyCumulus back-end.

Request

GET    /v1/online

Response

{
    "status" : 200, 
    "uri" : "/v1/online", 
    "server_status" : {
        "status" : true
    }
}


Utilities - Get API and back-end versions   

Returns the version of the MyCumulus API and of the back-end software.

Request

GET    /v1/version

Response

{
    "status" : 200, 
    "uri" : "/v1/version", 
    "version" : {
        "api_version" : "6.0", 
        "backend_version" : "6.0.0"
    }
}


Utilities - Check Client Compatibility   

This command verifies if the client software using the given API version is compatible with the actual API version. In the response, client_version_compatible is true if the back-end is backwards compatible with the API used by the client.

Request

GET    /v1/version/6.0

Response

{
    "status" : 200, 
    "uri" : "/v1/version/6.0", 
    "version" : {
        "client_version_compatible" : true, 
        "client_version" : "6.0", 
        "api_version" : "6.0", 
        "backend_version" : "6.0.0"
    }
}


Utilities - Get UTC Time   

Returns the actual UTC time of the MyCumulus back-end. The back-end server uses the Amazon Time Sync Service for time syncronisation.

Request

GET    /v1/time

Response

{
    "status" : 200, 
    "uri" : "/v1/time", 
    "time" : "2024-03-11T13:00:37.890408Z"
}


Utilities - Get Orthometric Height   

Returns for Lambert 72 (B), Lambert 2008 (B) and RD (NL), the difference between ellipsoidal height and orthometric height.

Request

POST    /v1/crs/dz
Content-Type: application/json
X-Auth-Token: b3d49ab248b41c6bdbd9f9ae78df2f38b996d6da6b316acc121fc16216c6e51412d8b50bc7bad98a57d25530b668ffee6214c554cc74856cf143aa6f4456d5a7b2e98fd925636e1d6e51720c3f15d3adb1054ebf5118b965b5bd5766e52b402ea4ab3b9ec7f18a38cfd0d42e80e82abc5fc5772e89cc4eb8a73059

Request Body

{
    "crs" : "RDNAP", 
    "coordinates" : {
        "latitude" : 51.7010500000000, 
        "longitude" : 5.35511000000000
    }
}

Response

{
    "Z_value" : {
        "Z" : 43.588318565505986
    }, 
    "uri" : "/v1/crs/dz", 
    "status" : 200
}


Utilities - Convert Geodetic Coordinates to Plane Coordinates   

Converts from geodetic to plane coordinates.
- Lambert 72 (B) and Lambert 2008 (B) : ellipsoidal altitude is converted to TAW.
- RD (NL) : ellipsoidal altitude is converted to NAP.
- BGS2005 : heigth = ellipsoidal altitude. Converts to Bulgarian CRS BGS2005 Cadastral.
- UTM : heigth = ellipsoidal altitude. The conversion is automatically done in the UTM zone of the given latitude, longitude.

See also:
    Utilities - Convert list of Geodetic Coordinates to Plane Coordinates
    Utilities - Convert Plane Coordinates to Geodetic Coordinates
    Utilities - Convert list of Plane Coordinates to Geodetic Coordinates

Request

POST    /v1/crs/conversion
Content-Type: application/json
X-Auth-Token: b3d49ab248b41c6bdbd9f9ae78df2f38b996d6da6b316acc121fc16216c6e51412d8b50bc7bad98a57d25530b668ffee6214c554cc74856cf143aa6f4456d5a7b2e98fd925636e1d6e51720c3f15d3adb1054ebf5118b965b5bd5766e52b402ea4ab3b9ec7f18a38cfd0d42e80e82abc5fc5772e89cc4eb8a73059

Request Body

{
    "crs" : "RDNAP", 
    "coordinates" : {
        "latitude" : 51.7010500000000, 
        "longitude" : 5.35511000000000, 
        "altitude" : 47.1230000000000
    }
}

Response

{
    "coordinates" : {
        "X" : 152781.5616310775, 
        "Y" : 412476.39033625706, 
        "Z" : 3.5346814344940114
    }, 
    "uri" : "/v1/crs/conversion", 
    "status" : 200
}


Utilities - Convert list of Geodetic Coordinates to Plane Coordinates   

Converts a list of geodetic coordinates to plane coordinates.

See also:
    Utilities - Convert Geodetic Coordinates to Plane Coordinates
    Utilities - Convert Plane Coordinates to Geodetic Coordinates
    Utilities - Convert list of Plane Coordinates to Geodetic Coordinates

Request

POST    /v1/crs/listconversion
Content-Type: application/json
X-Auth-Token: b3d49ab248b41c6bdbd9f9ae78df2f38b996d6da6b316acc121fc16216c6e51412d8b50bc7bad98a57d25530b668ffee6214c554cc74856cf143aa6f4456d5a7b2e98fd925636e1d6e51720c3f15d3adb1054ebf5118b965b5bd5766e52b402ea4ab3b9ec7f18a38cfd0d42e80e82abc5fc5772e89cc4eb8a73059

Request Body

{
    "crs" : "Lambert72", 
    "coordinates" : [
        {
            "latitude" : 51.0000000000000, 
            "longitude" : 5.00000000000000, 
            "altitude" : 75.0000000000000
        }, 
        {
            "latitude" : 51.1000000000000, 
            "longitude" : 5.10000000000000, 
            "altitude" : 75.1000000000000
        }, 
        {
            "latitude" : 51.2000000000000, 
            "longitude" : 5.20000000000000, 
            "altitude" : 75.2000000000000
        }
    ]
}

Response

{
    "coordinates" : [
        {
            "X" : 194310.43337177983, 
            "Y" : 187941.78858876982, 
            "Z" : 31.97233327229818
        }, 
        {
            "X" : 201220.15400326814, 
            "Y" : 199130.4603034103, 
            "Z" : 32.3336680094401
        }, 
        {
            "X" : 208099.7824498453, 
            "Y" : 210328.6867683348, 
            "Z" : 32.76499862670899
        }
    ], 
    "uri" : "/v1/crs/listconversion", 
    "status" : 200
}


Utilities - Convert Plane Coordinates to Geodetic Coordinates   

Converts from plane coordinates to geodetic coordinates.
For more details about the supported CRS's see Utilities - Convert Geodetic Coordinates to Plane Coordinates

See also:
    Utilities - Convert Geodetic Coordinates to Plane Coordinates
    Utilities - Convert list of Geodetic Coordinates to Plane Coordinates
    Utilities - Convert list of Plane Coordinates to Geodetic Coordinates

Request

POST    /v1/crs/inverse_conversion
Content-Type: application/json
X-Auth-Token: b3d49ab248b41c6bdbd9f9ae78df2f38b996d6da6b316acc121fc16216c6e51412d8b50bc7bad98a57d25530b668ffee6214c554cc74856cf143aa6f4456d5a7b2e98fd925636e1d6e51720c3f15d3adb1054ebf5118b965b5bd5766e52b402ea4ab3b9ec7f18a38cfd0d42e80e82abc5fc5772e89cc4eb8a73059

Request Body

{
    "crs" : "RDNAP", 
    "coordinates" : {
        "X" : 152781.563000000, 
        "Y" : 412476.389000000, 
        "Z" : 3.55000000000000
    }
}

Response

{
    "location" : {
        "altitude" : 47.138318575872425, 
        "latitude" : 51.70104998838578, 
        "longitude" : 5.35511002040349
    }, 
    "uri" : "/v1/crs/inverse_conversion", 
    "status" : 200
}


Utilities - Convert list of Plane Coordinates to Geodetic Coordinates   

Converts a list of plane coordinates to geodetic coordinates.

See also:
    Utilities - Convert Geodetic Coordinates to Plane Coordinates
    Utilities - Convert Plane Coordinates to Geodetic Coordinates
    Utilities - Convert list of Geodetic Coordinates to Plane Coordinates

Request

POST    /v1/crs/list_inverse_conversion
Content-Type: application/json
X-Auth-Token: b3d49ab248b41c6bdbd9f9ae78df2f38b996d6da6b316acc121fc16216c6e51412d8b50bc7bad98a57d25530b668ffee6214c554cc74856cf143aa6f4456d5a7b2e98fd925636e1d6e51720c3f15d3adb1054ebf5118b965b5bd5766e52b402ea4ab3b9ec7f18a38cfd0d42e80e82abc5fc5772e89cc4eb8a73059

Request Body

{
    "crs" : "Lambert72", 
    "coordinates" : [
        {
            "X" : 194310.433000000, 
            "Y" : 187941.789000000, 
            "Z" : 31.9720000000000
        }, 
        {
            "X" : 201220.154000000, 
            "Y" : 199130.460000000, 
            "Z" : 32.3340000000000
        }, 
        {
            "X" : 208099.782000000, 
            "Y" : 210328.684000000, 
            "Z" : 32.7650000000000
        }
    ]
}

Response

{
    "locations" : [
        {
            "altitude" : 74.99966672373188, 
            "latitude" : 51.000000001884075, 
            "longitude" : 5.000000005450774
        }, 
        {
            "altitude" : 75.10033200234022, 
            "latitude" : 51.0999999954506, 
            "longitude" : 5.10000001060911
        }, 
        {
            "altitude" : 75.20000145388698, 
            "latitude" : 51.19999997335334, 
            "longitude" : 5.200000003755887
        }
    ], 
    "uri" : "/v1/crs/list_inverse_conversion", 
    "status" : 200
}


--- Public API functions: Track and Trace ---


Location - Upload location of user   

Upload GNSS location. Stores the most recent GNSS location of the user. Can be used for track and trace.

Request

POST    /v1/location/upload
Content-Type: application/json
X-Auth-Token: cd42e783e6b2eaf9a6bcd5e366d9962f701d4b9c80857298c238fdebcb723debd56234c3fd9b182a421910ec4b228c83b8ef4a5a2132335ddcfb70fa2e6ee94adaac8f43f1fe90bcbaaf9e46afa3f36a78518bb9d4291bd51c98af45f16dd5f68899370d053312fa6ccbfb5261586b06f2d4dd28819849cf669762

Request Body

{
    "user_id" : "65ef0076697a365c4bad3b18", 
    "user_name" : "DrPyth", 
    "gnss_source" : "MyCumulus GNSS", 
    "coordinates" : {
        "longitude" : 51.7010500000000, 
        "latitude" : 5.35511000000000, 
        "altitude" : 66.2390000000000, 
        "accuracy" : 1.30000000000000E-3
    }
}

Response

{
    "location" : {
        "id" : "65ef0076697a365c4bad3b1f", 
        "created_at" : "2024-03-11T13:00:38.487518Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0076697a365c4bad3b18", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "user_id" : "65ef0076697a365c4bad3b18", 
        "coordinates" : {
            "latitude" : 5.35511, 
            "longitude" : 51.70105, 
            "altitude" : 66.239, 
            "accuracy" : 0.0013
        }, 
        "user_name" : "DrPyth", 
        "gnss_source" : "MyCumulus GNSS"
    }, 
    "uri" : "/v1/location/upload", 
    "status" : 200
}


Location - Get location of user   

Gets the most recent GNSS location.

Request

GET    /v1/location/65ef0076697a365c4bad3b18
X-Auth-Token: cd42e783e6b2eaf9a6bcd5e366d9962f701d4b9c80857298c238fdebcb723debd56234c3fd9b182a421910ec4b228c83b8ef4a5a2132335ddcfb70fa2e6ee94adaac8f43f1fe90bcbaaf9e46afa3f36a78518bb9d4291bd51c98af45f16dd5f68899370d053312fa6ccbfb5261586b06f2d4dd28819849cf669762

Response

{
    "location" : {
        "latitude" : 5.35511, 
        "longitude" : 51.70105, 
        "altitude" : 66.239, 
        "accuracy" : 0.0013
    }, 
    "uri" : "/v1/location/65ef0076697a365c4bad3b18", 
    "status" : 200
}


Location - Delete location of user   

Deletes the GNSS location.

Request

DELETE    /v1/location/65ef0076697a365c4bad3b18
X-Auth-Token: cd42e783e6b2eaf9a6bcd5e366d9962f701d4b9c80857298c238fdebcb723debd56234c3fd9b182a421910ec4b228c83b8ef4a5a2132335ddcfb70fa2e6ee94adaac8f43f1fe90bcbaaf9e46afa3f36a78518bb9d4291bd51c98af45f16dd5f68899370d053312fa6ccbfb5261586b06f2d4dd28819849cf669762

Response

{
    "location" : {
        "id" : "65ef0076697a365c4bad3b1f", 
        "created_at" : "2024-03-11T13:00:38.487Z", 
        "updated_at" : null, 
        "deleted_at" : "2024-03-11T13:00:38.549403Z", 
        "created_by" : "65ef0076697a365c4bad3b18", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "user_id" : "65ef0076697a365c4bad3b18", 
        "coordinates" : {
            "latitude" : 5.35511, 
            "longitude" : 51.70105, 
            "altitude" : 66.239, 
            "accuracy" : 0.0013
        }, 
        "user_name" : "DrPyth", 
        "gnss_source" : "MyCumulus GNSS"
    }, 
    "uri" : "/v1/location/65ef0076697a365c4bad3b18", 
    "status" : 200
}


--- Public API functions: Users ---


Users - Login   

Login using name and password. The name may be either the user name or the e-mail address. Once logged in, the user needs the authentication code X-Auth-Token to access the public MyCumulus API functions.
The request body should contain a JSON object named credentials containing the user name and password, and an optional boolean field named remember.
If remember is set to true, the user session will be kept active until the user has explicitely logged out.
By default remember is set to false and the user session will be closed after 24 hours.

See also:
    Users - Logout
    Users - Retrieve (Admin)
    Users - Retrieve (Collaborator)

Request

POST    /v1/users/login
Content-Type: application/json

Request Body

{
    "credentials" : {
        "name" : "DrPyth", 
        "password" : "MyPassword"
    }, 
    "remember" : false
}

Response

{
    "uri" : "/v1/users/login", 
    "status" : 202, 
    "token" : {
        "expires_at" : "2024-03-12T13:00:38.899540Z", 
        "user_id" : "65ef0076697a365c4bad3b21", 
        "key" : "9d88cb62ae6e583cac4ff7d6d81822bebb749d0cdb83bd0f4f88f1b3899fff29462f32881bbcda11f66be2a55e6c2f2bcc048311282e9b52e9de6abae1a4f8c4678acfbdfc3372e8344bb9143d7641eedd1bd82bce62302d993fb8115a612a31286da6cfdd2a08f7a82eed6c3abcd475976aa32a49ee31e61354c8fc3"
    }
}


Users - Logout   

Logout of Admin or Collaborator.

See also:
    Users - Login

Request

POST    /v1/users/logout
X-Auth-Token: 9d88cb62ae6e583cac4ff7d6d81822bebb749d0cdb83bd0f4f88f1b3899fff29462f32881bbcda11f66be2a55e6c2f2bcc048311282e9b52e9de6abae1a4f8c4678acfbdfc3372e8344bb9143d7641eedd1bd82bce62302d993fb8115a612a31286da6cfdd2a08f7a82eed6c3abcd475976aa32a49ee31e61354c8fc3

Response

{
    "uri" : "/v1/users/logout", 
    "status" : 200
}


Users - Retrieve (Admin)   

Retrieve information of the User. Example shows the response if user is an Admin User

Request

GET    /v1/users/65ef0076697a365c4bad3b21
X-Auth-Token: 786d1ef998084bb93c24aa29116695bbc6ae5ae82ab3372d45c759e33142632c2c9d737092a92ed154592da0f53067af36fcba4c71e384a7507ee4fc6475f3c1b499e6272e39e7814a9e7d389499abbadfb2198c4dd1e36545208b7338aa8d17f3a47760c65d2b1d7ec789f9824aaa23904ef8c2dd82b17718b269

Response

{
    "uri" : "/v1/users/65ef0076697a365c4bad3b21", 
    "user" : {
        "id" : "65ef0076697a365c4bad3b21", 
        "email" : "drpyth@mycumulus.com", 
        "name" : "DrPyth", 
        "is_activated" : true, 
        "managed_users_ids" : [
            "65ef0076697a365c4bad3b29"
        ], 
        "created_at" : "2024-03-11T13:00:38.807Z", 
        "updated_at" : "2024-03-11T13:00:38.846Z", 
        "deleted_at" : null, 
        "user_type" : "admin_user", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : false, 
        "mc_marxact" : null
    }, 
    "status" : 200
}


Users - Retrieve (Collaborator)   

Retrieve information of the User. Example shows the response if user is a collaborator

Request

GET    /v1/users/65ef0076697a365c4bad3b29
X-Auth-Token: 786d1ef998084bb93c24aa29116695bbc6ae5ae82ab3372d45c759e33142632c2c9d737092a92ed154592da0f53067af36fcba4c71e384a7507ee4fc6475f3c1b499e6272e39e7814a9e7d389499abbadfb2198c4dd1e36545208b7338aa8d17f3a47760c65d2b1d7ec789f9824aaa23904ef8c2dd82b17718b269

Response

{
    "uri" : "/v1/users/65ef0076697a365c4bad3b29", 
    "user" : {
        "id" : "65ef0076697a365c4bad3b29", 
        "email" : "thales@mycumulus.com", 
        "name" : "Thales", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:38.975Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 200
}


Users - Update name and e-mail   

Update the name and/or e-mail of the user.

Request

PUT    /v1/users/65ef0076697a365c4bad3b21/update
Content-Type: application/json
X-Auth-Token: 786d1ef998084bb93c24aa29116695bbc6ae5ae82ab3372d45c759e33142632c2c9d737092a92ed154592da0f53067af36fcba4c71e384a7507ee4fc6475f3c1b499e6272e39e7814a9e7d389499abbadfb2198c4dd1e36545208b7338aa8d17f3a47760c65d2b1d7ec789f9824aaa23904ef8c2dd82b17718b269

Request Body

{
    "name" : "DrPyth", 
    "email" : "mynewemail@mycumulus.com"
}

Response

{
    "uri" : "/v1/users/65ef0076697a365c4bad3b21/update", 
    "user" : {
        "id" : "65ef0076697a365c4bad3b21", 
        "email" : "mynewemail@mycumulus.com", 
        "name" : "DrPyth", 
        "is_activated" : true, 
        "managed_users_ids" : [
        ], 
        "created_at" : "2024-03-11T13:00:38.807Z", 
        "updated_at" : "2024-03-11T13:00:39.205847Z", 
        "deleted_at" : null, 
        "user_type" : "admin_user", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : false, 
        "mc_marxact" : null
    }, 
    "status" : 200
}


Users - Adding Collaborators   

An Admin user can invite collaborators with the invite call.
The response contains an invitation_code, that is required to signup a collaborator (also called a managed user).
The number of collaborators that can be added depends on the subscription.

See also:
    Users - Signup of a Collaborator
    Users - Delete Collaborator (by Admin User)

Request

POST    /v1/users/invite
Content-Type: application/json
X-Auth-Token: 786d1ef998084bb93c24aa29116695bbc6ae5ae82ab3372d45c759e33142632c2c9d737092a92ed154592da0f53067af36fcba4c71e384a7507ee4fc6475f3c1b499e6272e39e7814a9e7d389499abbadfb2198c4dd1e36545208b7338aa8d17f3a47760c65d2b1d7ec789f9824aaa23904ef8c2dd82b17718b269

Request Body

{
    "email" : "Thales@mycumulus.com"
}

Response

{
    "invitation_code" : "34864ad7696b60dbcda1b467701b6969efc854facb62ddbc7ceda94ffcf16228467f377fbb79fd8bdd8d881ef5e7cf981e26fd4f5b3dc611ed7e9774432ef8d79497cf12e31dce3f8a276cc94722f4816b377ddff8eac605592c0a2dd47706a566fc7cbbbc1cc2faa6c4bc27c99528b6c5acf99c4ac61bb5c408aefc", 
    "uri" : "/v1/users/invite", 
    "status" : 200
}


Users - Signup of a Collaborator   

When an Admin user has sent an invitation, the collaborator will receive an e-mail. Using the link in the e-mail will activate the Signup page of the MyCumulus website.
When the user name and the password are given, the user can activate the account.

See also:
    Users - Adding Collaborators

Request

POST    /v1/users/signupmanaged?token=34864ad7696b60dbcda1b467701b6969efc854facb62ddbc7ceda94ffcf16228467f377fbb79fd8bdd8d881ef5e7cf981e26fd4f5b3dc611ed7e9774432ef8d79497cf12e31dce3f8a276cc94722f4816b377ddff8eac605592c0a2dd47706a566fc7cbbbc1cc2faa6c4bc27c99528b6c5acf99c4ac61bb5c408aefc
Content-Type: application/json

Request Body

{
    "email" : "Thales@mycumulus.com", 
    "name" : "Thales", 
    "password" : "MyPassword", 
    "user_type" : "collaborator"
}

Response

{
    "uri" : "/v1/users/signupmanaged", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b2c", 
        "email" : "thales@mycumulus.com", 
        "name" : "Thales", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.302986Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 201
}


Users - Change Password   

A user can request to change his password with the Change Password function. The old and the new password must be given in the Request Body.

See also:
    Users - Login
    Users - Change Password of Collaborator

Request

PUT    /v1/users/changepassword
Content-Type: application/json
X-Auth-Token: 152068e8c74c544f634ba7ed4e9af1b653b1161256828e038e57adcd9b58f18defa9ec05f3e82507cd8c14c2c37de84eddceb1fea715472f949b799ac7f1cb15dfd5b7befae3c1c655bd1955faae9b0472e17a443fcc5c8782d98311119cbb48dbe479cd15ae94156cd9efc34dceebf36b5c1f7f098ef7f9d46daf47cdaec

Request Body

{
    "password" : "MyPassword", 
    "new_password" : "OldPassword"
}

Response

{
    "uri" : "/v1/users/changepassword", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b2c", 
        "email" : "thales@mycumulus.com", 
        "name" : "Thales", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.302Z", 
        "updated_at" : "2024-03-11T13:00:39.420630Z", 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 200
}


Users - Change Password of Collaborator   

Change of the password of a Collaborator by the Admin user.

See also:
    Users - Login
    Users - Change Password

Request

POST    /v1/users/resetcollaboratorpassword
X-Auth-Token: 786d1ef998084bb93c24aa29116695bbc6ae5ae82ab3372d45c759e33142632c2c9d737092a92ed154592da0f53067af36fcba4c71e384a7507ee4fc6475f3c1b499e6272e39e7814a9e7d389499abbadfb2198c4dd1e36545208b7338aa8d17f3a47760c65d2b1d7ec789f9824aaa23904ef8c2dd82b17718b269
Content-Type: application/json

Request Body

{
    "collaborator_name" : "Thales", 
    "new_password" : "NewPassword"
}

Response

{
    "uri" : "/v1/users/resetcollaboratorpassword", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b2c", 
        "email" : "thales@mycumulus.com", 
        "name" : "Thales", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.302Z", 
        "updated_at" : "2024-03-11T13:00:39.508815Z", 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 200
}


Users - Number of Collaborators   

Returns the number of all Collaborators that the Admin user has added. The count includes the Admin user.

See also:
    Users - Adding Collaborators
    Users - Delete Collaborator (by Admin User)
    Users - Get Collaborators

Request

GET    /v1/users/65ef0076697a365c4bad3b21/count
X-Auth-Token: b78451a487a491c9dcebce24b34abc657ab0ca80dcdfdbe443ae6a554ba92fceaac61a9686ae4be3fc795cdc919d1cc2be345d27b5fe894f3a95ce5eb1c4bd1fa027b18aaf293fade3a2e9273a853ced8f46942334859a5e1594bba7356eb3bb14314deace8877ad3cde4ad51c2448f5776b8778509ad53a673b4

Response

{
    "number_of_users" : 2
}


Users - Get Collaborators   

Returns a list of all Collaborators that the Admin user has added.

See also:
    Users - Adding Collaborators
    Users - Delete Collaborator (by Admin User)

Request

GET    /v1/users/65ef0076697a365c4bad3b21/managed?page=1&perPage=100
X-Auth-Token: b78451a487a491c9dcebce24b34abc657ab0ca80dcdfdbe443ae6a554ba92fceaac61a9686ae4be3fc795cdc919d1cc2be345d27b5fe894f3a95ce5eb1c4bd1fa027b18aaf293fade3a2e9273a853ced8f46942334859a5e1594bba7356eb3bb14314deace8877ad3cde4ad51c2448f5776b8778509ad53a673b4

Response

{
    "uri" : "/v1/users/65ef0076697a365c4bad3b21/managed", 
    "users" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/users/65ef0076697a365c4bad3b21/managed?page=1&perPage=100", 
                "self" : "/v1/users/65ef0076697a365c4bad3b21/managed", 
                "first" : "/v1/users/65ef0076697a365c4bad3b21/managed?page=1&perPage=100"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/users/65ef0076697a365c4bad3b21/managed?page=1&perPage=100", 
                "self" : "https://api.mycumulus.com/v1/users/65ef0076697a365c4bad3b21/managed", 
                "first" : "https://api.mycumulus.com/v1/users/65ef0076697a365c4bad3b21/managed?page=1&perPage=100"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0077697a365c4bad3b2c", 
                "email" : "thales@mycumulus.com", 
                "name" : "Thales", 
                "is_activated" : true, 
                "created_at" : "2024-03-11T13:00:39.302Z", 
                "updated_at" : "2024-03-11T13:00:39.560Z", 
                "deleted_at" : null, 
                "user_type" : "collaborator", 
                "customer_id" : "65ef0076697a365c4bad3b23", 
                "temporary_user" : null, 
                "mc_marxact" : null, 
                "manager_id" : "65ef0076697a365c4bad3b21", 
                "permissions" : {
                    "projects" : [
                    ]
                }
            }
        ]
    }, 
    "status" : 200
}


Users - Grant Collaborator permission to create projects   

This command will give permission to the Collaborator to create projects. Only an Admin can grant this permission.
The request body contains a JSON object named permissions.
Only the structure shown in the example below is valid.
The Admin user acts as a super user and has all permissions to projects, templates, features and files owned by a collaborator.

See also:
    Projects - Create a project
    Users - Revoke Collaborator permission to create projects

Request

PUT    /v1/users/65ef0077697a365c4bad3b30/grant
Content-Type: application/json
X-Auth-Token: b78451a487a491c9dcebce24b34abc657ab0ca80dcdfdbe443ae6a554ba92fceaac61a9686ae4be3fc795cdc919d1cc2be345d27b5fe894f3a95ce5eb1c4bd1fa027b18aaf293fade3a2e9273a853ced8f46942334859a5e1594bba7356eb3bb14314deace8877ad3cde4ad51c2448f5776b8778509ad53a673b4

Request Body

{
    "permissions" : {
        "projects" : [
            "create"
        ]
    }
}

Response

{
    "uri" : "/v1/users/65ef0077697a365c4bad3b30/grant", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b30", 
        "email" : "porphyry@mycumulus.com", 
        "name" : "Porphyry", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.820Z", 
        "updated_at" : "2024-03-11T13:00:39.862675Z", 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
                "create"
            ]
        }
    }, 
    "status" : 200
}


Users - Revoke Collaborator permission to create projects   

This command will revoke the permission of a Collaborator to create projects. Only an Admin can revoke this permission.
The request body contains a JSON object named permissions.
Only the structure shown in the example below is valid.
The Admin user acts as a super user and has all permissions to projects, templates, features and files owned by a collaborator.

See also:
    Projects - Create a project
    Users - Grant Collaborator permission to create projects

Request

PUT    /v1/users/65ef0077697a365c4bad3b30/revoke
Content-Type: application/json
X-Auth-Token: b78451a487a491c9dcebce24b34abc657ab0ca80dcdfdbe443ae6a554ba92fceaac61a9686ae4be3fc795cdc919d1cc2be345d27b5fe894f3a95ce5eb1c4bd1fa027b18aaf293fade3a2e9273a853ced8f46942334859a5e1594bba7356eb3bb14314deace8877ad3cde4ad51c2448f5776b8778509ad53a673b4

Request Body

{
    "permissions" : {
        "projects" : [
            "create"
        ]
    }
}

Response

{
    "uri" : "/v1/users/65ef0077697a365c4bad3b30/revoke", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b30", 
        "email" : "porphyry@mycumulus.com", 
        "name" : "Porphyry", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.820Z", 
        "updated_at" : "2024-03-11T13:00:39.891944Z", 
        "deleted_at" : null, 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 200
}


Users - Delete Collaborator (by Admin User)   

Delete a Collaborator. When deleted, all projects owned by the Collaborator, and consequently the subordinate templates and features, will be removed.

See also:
    Users - Adding Collaborators
    Users - Number of Collaborators
    Users - Get Collaborators

Request

DELETE    /v1/managedusers/65ef0077697a365c4bad3b30
X-Auth-Token: b78451a487a491c9dcebce24b34abc657ab0ca80dcdfdbe443ae6a554ba92fceaac61a9686ae4be3fc795cdc919d1cc2be345d27b5fe894f3a95ce5eb1c4bd1fa027b18aaf293fade3a2e9273a853ced8f46942334859a5e1594bba7356eb3bb14314deace8877ad3cde4ad51c2448f5776b8778509ad53a673b4

Response

{
    "uri" : "/v1/managedusers/65ef0077697a365c4bad3b30", 
    "user" : {
        "id" : "65ef0077697a365c4bad3b30", 
        "email" : "porphyry@mycumulus.com", 
        "name" : "Porphyry", 
        "is_activated" : true, 
        "created_at" : "2024-03-11T13:00:39.820Z", 
        "updated_at" : "2024-03-11T13:00:39.891Z", 
        "deleted_at" : "2024-03-11T13:00:39.930748Z", 
        "user_type" : "collaborator", 
        "customer_id" : "65ef0076697a365c4bad3b23", 
        "temporary_user" : null, 
        "mc_marxact" : null, 
        "manager_id" : "65ef0076697a365c4bad3b21", 
        "permissions" : {
            "projects" : [
            ]
        }
    }, 
    "status" : 200
}


--- Public API functions: Projects ---


Projects - Create a project   

Creates a project. An Admin user can always create projects. A Collaborator requires permission, see Users - Grant Collaborator permission to create projects to create projects.
A user that created the project, will become the owner of the project.
The owner of a project has all permissions. None can be revoked.
A project can be a 'template', a 'domain' or a plain 'project'. A project of type 'template' is intended to be used as a template to create plain projects. A 'domain' groups forms that belong to the same domain. E.g. archeology, biology, drilling, etc.A project created by a user is a private project. It means that the project can only be shared by users being part of the same organisation (same customer).The MyCumulus system contains public project templates and public domains. This allows client applications to duplicate public project templates and forms.

See also:
    Users - Grant Collaborator permission to create projects
    Projects - Update the project data
    Projects - Delete a Project
    Projects - Duplicate a Project
    Projects - Copy Project Template
    Project/Members - Retrieve information of a member of a project.
    Projects - Retrieve projects (Admin User)
    Projects - Retrieve projects (Collaborator)

Request

POST    /v1/projects
Content-Type: application/json
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Request Body

{
    "name" : "Test Project", 
    "description" : "Description of Test Project", 
    "project_class" : "project", 
    "archived" : false, 
    "image_file_url" : null
}

Response

{
    "project" : {
        "id" : "65ef0078697a365c4bad3b39", 
        "name" : "Test Project", 
        "description" : "Description of Test Project", 
        "image_file_url" : null, 
        "template_ids" : [
        ], 
        "created_at" : "2024-03-11T13:00:40.332709Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "project", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/projects", 
    "status" : 201
}


Projects - Update the project data   

Updates the information of the specified project. This API can be used to change the project class, and to archive/unarchive a project.The API does not allow to change a project template or a domain to a plain project. Other changes of project class are allowed.

See also:
    Projects - Create a project

Request

PUT    /v1/projects/65ef0078697a365c4bad3b39
Content-Type: application/json
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Request Body

{
    "name" : "Test Project changed", 
    "description" : "Description of Test Project changed", 
    "project_class" : "template", 
    "archived" : false, 
    "image_file_url" : null
}

Response

{
    "project" : {
        "id" : "65ef0078697a365c4bad3b39", 
        "name" : "Test Project changed", 
        "description" : "Description of Test Project changed", 
        "image_file_url" : null, 
        "template_ids" : [
        ], 
        "created_at" : "2024-03-11T13:00:40.332Z", 
        "updated_at" : "2024-03-11T13:00:40.414244Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : "65ef0078697a365c4bad3b32", 
        "deleted_by" : null, 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "template", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/projects/65ef0078697a365c4bad3b39", 
    "status" : 200
}


Projects - Number of projects   

The X-Auth-Token may refer to an Admin user or to a Collaborator. If:
    - Admin user: returns the number of projects that are created by the user plus the projects created by its collaborators.
        As a consequence, the number of projects may be larger than the number of projects returned by the call: Projects - Retrieve projects (Admin User)
    - Collaborator: returns the number of projects that are (1) created by the collaborator, plus (2) the projects the collaborator is member of.
The user that created the project is also called the owner of the project.

See also:
    Projects - Create a project

Request

GET    /v1/projects/count/
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Response

{
    "number_of_projects" : 3
}


Projects - Retrieve projects (Admin User)   

The X-Auth-Token may refer to an Admin user or to a Collaborator. If project_class = "project":
    - Admin user: returns all projects that are created by the user. The projects created by its collaborators cannot be obtained.
    - Collaborator: returns all projects that are (1) created by the collaborator, and (2) the projects the collaborator is member of.
The example below shows the result when the function is called by an Admin (the X-Auth-Token is of an Admin).
The query contains (optionally):
    - proClass: "project", "domain" or "template". Default = "project"
    - visibility: "private", or "public". Default = "private"
    - archived: "true", or "false". Default = "false"
The list will return only the projects satisfying the query.

See also:
    Projects - Create a project
    Projects - Retrieve projects (Collaborator)

Request

GET    /v1/projects?proClass=domain&visibility=public&archived=false&perPage=2000
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Response

{
    "projects" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/projects?page=1&perPage=2000", 
                "self" : "/v1/projects", 
                "first" : "/v1/projects?page=1&perPage=2000"
            }, 
            "pages" : 1, 
            "total_count" : 2, 
            "page" : 1, 
            "page_count" : 2, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/projects?page=1&perPage=2000", 
                "self" : "https://api.mycumulus.com/v1/projects", 
                "first" : "https://api.mycumulus.com/v1/projects?page=1&perPage=2000"
            }
        }, 
        "instances" : [
            {
                "id" : "61c767f8ed111050367c8aa6", 
                "name" : "Boringen", 
                "description" : "Formulieren voor opmeten van boringen", 
                "image_file_url" : null, 
                "template_ids" : [
                    "61c768b3ed111050367c8aad", 
                    "61c77194ed111050367c8ade"
                ], 
                "created_at" : "2021-12-25T18:50:32.803Z", 
                "updated_at" : "2021-12-25T19:31:32.023Z", 
                "deleted_at" : null, 
                "created_by" : "60c398c7ed1110705153afb6", 
                "updated_by" : "60c398c7ed1110705153afb6", 
                "deleted_by" : null, 
                "customer_id" : "60c398c7ed1110705153afb6", 
                "project_class" : "domain", 
                "visibility" : "public", 
                "archived" : false
            }, 
            {
                "id" : "61a1f8b0ed111050367b9726", 
                "name" : "Diagnosis and testing", 
                "description" : "Forms useful for diagnosis and testing", 
                "image_file_url" : null, 
                "template_ids" : [
                    "61a1f90aed111050367b9729", 
                    "62113f6ced11100895364dee"
                ], 
                "created_at" : "2021-11-27T09:21:52.225Z", 
                "updated_at" : "2022-02-19T19:05:16.115Z", 
                "deleted_at" : null, 
                "created_by" : "60c398c7ed1110705153afb6", 
                "updated_by" : "60c398c7ed1110705153afb6", 
                "deleted_by" : null, 
                "customer_id" : "60c398c7ed1110705153afb6", 
                "project_class" : "domain", 
                "visibility" : "public", 
                "archived" : false
            }
        ]
    }, 
    "uri" : "/v1/projects", 
    "status" : 200
}


Projects - Retrieve projects (Collaborator)   

The X-Auth-Token may refer to an Admin user or to a Collaborator. If:
    - Admin user: returns all projects that are created by the user. The projects created by its collaborators cannot be obtained.
    - Collaborator: returns all projects that are (1) created by the collaborator, and (2) the projects the collaborator is member of.
The example below shows the result when the function is called by a collaborator (the X-Auth-Token is of a collaborator). Notice that the name of the object in the JSON structure containing the projects = project_members.
The command returns the same projects as the (obsolete) call  Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)

See also:
    Projects - Create a project
    Projects - Retrieve projects (Admin User)

Request

GET    /v1/projects?proClass=project&visibility=private&archived=false&perPage=2000
X-Auth-Token: ca115140b5cf6fc17d33ef90fac6b8bed28f02fd83a7e1ae4b79c31cd38c829ecc2df9e4dc917e748e4b1141cab2f7bcba6bc6d18f62a0da213843329a7ba9cfb54a9a0455affc664db1fbc5df45ca5e86dabad45c7f08b3baea559fa397e24455a50aa3f7a7a52c25ccbf81d0f151d156a0e714e5d9b63d146a

Response

{
    "projects" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/projects?page=1&perPage=2000", 
                "self" : "/v1/projects", 
                "first" : "/v1/projects?page=1&perPage=2000"
            }, 
            "pages" : 1, 
            "total_count" : 2, 
            "page" : 1, 
            "page_count" : 2, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/projects?page=1&perPage=2000", 
                "self" : "https://api.mycumulus.com/v1/projects", 
                "first" : "https://api.mycumulus.com/v1/projects?page=1&perPage=2000"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0078697a365c4bad3b40", 
                "name" : "Project of Thales", 
                "description" : "Description of project", 
                "image_file_url" : null, 
                "template_ids" : [
                ], 
                "created_at" : "2024-03-11T13:00:40.829Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef0078697a365c4bad3b3d", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "customer_id" : "65ef0078697a365c4bad3b34", 
                "project_class" : "project", 
                "visibility" : "private", 
                "archived" : false
            }, 
            {
                "id" : "65ef0078697a365c4bad3b3a", 
                "name" : "Test Project 2", 
                "description" : "Description of Test Project 2", 
                "image_file_url" : null, 
                "template_ids" : [
                ], 
                "created_at" : "2024-03-11T13:00:40.487Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef0078697a365c4bad3b32", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "customer_id" : "65ef0078697a365c4bad3b34", 
                "project_class" : "project", 
                "visibility" : "private", 
                "archived" : false
            }
        ]
    }, 
    "uri" : "/v1/projects", 
    "status" : 200
}


Projects - Retrieve a Project   

Reads the information of the specified project.

See also:
    Projects - Create a project

Request

GET    /v1/projects/65ef0078697a365c4bad3b39
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Response

{
    "project" : {
        "id" : "65ef0078697a365c4bad3b39", 
        "name" : "Test Project changed", 
        "description" : "Description of Test Project changed", 
        "image_file_url" : null, 
        "template_ids" : [
        ], 
        "created_at" : "2024-03-11T13:00:40.332Z", 
        "updated_at" : "2024-03-11T13:00:40.414Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : "65ef0078697a365c4bad3b32", 
        "deleted_by" : null, 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "template", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/projects/65ef0078697a365c4bad3b39", 
    "status" : 200
}


Projects - Delete a Project   

Delete the specified project.
When deleted, all templates in the project, and consequently the subordinate features, will be removed.

See also:
    Projects - Create a project

Request

DELETE    /v1/projects/65ef0078697a365c4bad3b3a
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Response

{
    "project" : {
        "id" : "65ef0078697a365c4bad3b3a", 
        "name" : "Test Project 2", 
        "description" : "Description of Test Project 2", 
        "image_file_url" : null, 
        "template_ids" : [
        ], 
        "created_at" : "2024-03-11T13:00:40.487Z", 
        "updated_at" : null, 
        "deleted_at" : "2024-03-11T13:00:41.039721Z", 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : null, 
        "deleted_by" : "65ef0078697a365c4bad3b32", 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "project", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/projects/65ef0078697a365c4bad3b3a", 
    "status" : 200
}


Projects - Duplicate a Project   

Duplicates the project. De duplicated project will contain the same templates as the original project.
The user calling the duplicate API will become the owner of the project. When duplicating the project of another user, the rights of the original project are not duplicated.

See also:
    Projects - Create a project

Request

POST    /v1/project/duplicate
Content-Type: application/json
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Request Body

{
    "project_id" : "65ef0079697a365c4bad3b42", 
    "name" : "Test Project Copy", 
    "description" : "Description of Test Project"
}

Response

{
    "project" : {
        "id" : "65ef0079697a365c4bad3b44", 
        "name" : "Test Project Copy", 
        "description" : "Description of Test Project", 
        "image_file_url" : null, 
        "template_ids" : [
            "65ef0079697a365c4bad3b45"
        ], 
        "created_at" : "2024-03-11T13:00:41.191149Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "project", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/project/duplicate", 
    "status" : 201
}


Projects - Copy Project Template   

Duplicates a private or public project template and converts it to a plain project. De new project will contain the same templates as the original project template.
The user calling this API will become the owner of the project. When duplicating the project template of another user, the rights of the original project are not duplicated.

See also:
    Projects - Create a project

Request

POST    /v1/project/template/copy
Content-Type: application/json
X-Auth-Token: b8d9a04d1d1ad9a13cd8b12b1ae3c2d223589836ad2b14f81a9f3262a15c89d55e60694d937276c9f8bdedde911d4b137cfdeac577ca531a557fb11d447a97d292b46d4ced987bb1a9f80abecf38acf07f8db9489d09e627f046e6e81660509beec9b7ea25ef7d1ab890ecefaaf7b0a8cbbb945dc2382e34e70d5

Request Body

{
    "user_id" : "65ef0078697a365c4bad3b32", 
    "project_id" : "65ef0079697a365c4bad3b42", 
    "name" : "Sewage Vosselaar", 
    "description" : "Sewage Survey in Vosselaar"
}

Response

{
    "project" : {
        "id" : "65ef0079697a365c4bad3b46", 
        "name" : "Sewage Vosselaar", 
        "description" : "Sewage Survey in Vosselaar", 
        "image_file_url" : null, 
        "template_ids" : [
            "65ef0079697a365c4bad3b47"
        ], 
        "created_at" : "2024-03-11T13:00:41.284293Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0078697a365c4bad3b32", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "customer_id" : "65ef0078697a365c4bad3b34", 
        "project_class" : "project", 
        "visibility" : "private", 
        "archived" : false
    }, 
    "uri" : "/v1/project/template/copy", 
    "status" : 201
}


--- Public API functions: Project-Members ---


Project/Members - Add a user to a project.   

Add a collaborator to a project. When a collaborator is added, he becomes a member of the project.
Only the owner of the project or the Admin is authorised to add members to his project(s).
A member has initially no rights (permissions) to the templates of the owner of the project. The permissions (rights) are granted using: Project/Members - Grant permissions to collaborator

Request : POST /v1/projects/:project_id/members

See also:
    Project/Members - Remove a user from a project.
    Project/Members - Grant permissions to collaborator
    Project/Members - Revoke permissions from collaborator
    Project/Members - Retrieve the list of 'all members (users)' of the project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.

Request

POST    /v1/projects/65ef0079697a365c4bad3b50/members
Content-Type: application/json
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454
X-Working-Project-Id: 65ef0079697a365c4bad3b50

Request Body

{
    "user_id" : "65ef0079697a365c4bad3b53"
}

Response

{
    "project_member" : {
        "id" : "65ef007a697a365c4bad3b56", 
        "user_id" : "65ef0079697a365c4bad3b53", 
        "project_id" : "65ef0079697a365c4bad3b50", 
        "permissions" : {
            "features" : [
            ]
        }, 
        "created_at" : "2024-03-11T13:00:42.005699Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0079697a365c4bad3b49", 
        "updated_by" : null, 
        "deleted_by" : null
    }, 
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/members", 
    "status" : 201
}


Project/Members - Retrieve information of a member of a project.   

Returns information of the member of the project. Here you can find the permissions related to templates/features.

See also:
    Projects - Create a project

Request

GET    /v1/projects/65ef0079697a365c4bad3b50/members/65ef0079697a365c4bad3b53
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454

Response

{
    "project_member" : {
        "id" : "65ef007a697a365c4bad3b56", 
        "user_id" : "65ef0079697a365c4bad3b53", 
        "project_id" : "65ef0079697a365c4bad3b50", 
        "permissions" : {
            "features" : [
                {
                    "template_id" : "65ef007a697a365c4bad3b58", 
                    "permission_types" : [
                        "create", 
                        "read", 
                        "update", 
                        "delete"
                    ]
                }, 
                {
                    "template_id" : "65ef007a697a365c4bad3b59", 
                    "permission_types" : [
                        "read", 
                        "update"
                    ]
                }
            ]
        }, 
        "created_at" : "2024-03-11T13:00:42.005Z", 
        "updated_at" : "2024-03-11T13:00:42.241Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0079697a365c4bad3b49", 
        "updated_by" : "65ef0079697a365c4bad3b49", 
        "deleted_by" : null
    }, 
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/members/65ef0079697a365c4bad3b53", 
    "status" : 200
}


Project/Members - Retrieve the list of 'all members (users)' of the project.   

Returns all members of the project. The Admin user will never be in the list. When the owner is a collaborator, he will be in the list.
The information in the list is general information about each collaborator. If you need for a specific member the permissions to templates and features see: Project/Members - Retrieve information of a member of a project.

See also:
    Projects - Create a project
    Project/Members - Add a user to a project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.

Request

GET    /v1/projects/65ef0079697a365c4bad3b50/members?page=1&perPage=100
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454

Response

{
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/members", 
    "users" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/projects/65ef0079697a365c4bad3b50/members?page=1&perPage=100", 
                "self" : "/v1/projects/65ef0079697a365c4bad3b50/members", 
                "first" : "/v1/projects/65ef0079697a365c4bad3b50/members?page=1&perPage=100"
            }, 
            "pages" : 1, 
            "total_count" : 2, 
            "page" : 1, 
            "page_count" : 2, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/projects/65ef0079697a365c4bad3b50/members?page=1&perPage=100", 
                "self" : "https://api.mycumulus.com/v1/projects/65ef0079697a365c4bad3b50/members", 
                "first" : "https://api.mycumulus.com/v1/projects/65ef0079697a365c4bad3b50/members?page=1&perPage=100"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0079697a365c4bad3b55", 
                "email" : "porphyry@mycumulus.com", 
                "name" : "Porphyry", 
                "is_activated" : true, 
                "created_at" : "2024-03-11T13:00:41.959Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "user_type" : "collaborator", 
                "customer_id" : "65ef0079697a365c4bad3b4b", 
                "temporary_user" : null, 
                "mc_marxact" : null, 
                "manager_id" : "65ef0079697a365c4bad3b49", 
                "permissions" : {
                    "projects" : [
                    ]
                }
            }, 
            {
                "id" : "65ef0079697a365c4bad3b53", 
                "email" : "thales@mycumulus.com", 
                "name" : "Thales", 
                "is_activated" : true, 
                "created_at" : "2024-03-11T13:00:41.865Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "user_type" : "collaborator", 
                "customer_id" : "65ef0079697a365c4bad3b4b", 
                "temporary_user" : null, 
                "mc_marxact" : null, 
                "manager_id" : "65ef0079697a365c4bad3b49", 
                "permissions" : {
                    "projects" : [
                    ]
                }
            }
        ]
    }, 
    "status" : 200
}


Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)   

Retrieve the list of 'all projects' the collaborator is member of, and the projects owned by the collaborator. This call should not be used for Admin users since they can't be member of projects of a collaborator. For an Admin user, this call does not even return it's own projects. 
For a collaborator, the command returns the same projects as the call  Projects - Retrieve projects (Collaborator)

See also:
    Projects - Create a project
    Project/Members - Add a user to a project.
    Project/Members - Retrieve the list of 'all members (users)' of the project.
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.

Request

GET    /v1/users/65ef0079697a365c4bad3b53/projects?page=1&perPage=100
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454

Response

{
    "projects" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/users/65ef0079697a365c4bad3b53/projects?page=1&perPage=1", 
                "self" : "/v1/users/65ef0079697a365c4bad3b53/projects", 
                "first" : "/v1/users/65ef0079697a365c4bad3b53/projects?page=1&perPage=1"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projects?page=1&perPage=1", 
                "self" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projects", 
                "first" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projects?page=1&perPage=1"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0079697a365c4bad3b50", 
                "name" : "Test Project", 
                "description" : "Description of Test Project", 
                "image_file_url" : null, 
                "template_ids" : [
                    "65ef007a697a365c4bad3b58", 
                    "65ef007a697a365c4bad3b59"
                ], 
                "created_at" : "2024-03-11T13:00:41.707Z", 
                "updated_at" : "2024-03-11T13:00:42.196Z", 
                "deleted_at" : null, 
                "created_by" : "65ef0079697a365c4bad3b49", 
                "updated_by" : "65ef0079697a365c4bad3b49", 
                "deleted_by" : null, 
                "customer_id" : "65ef0079697a365c4bad3b4b", 
                "project_class" : "project", 
                "visibility" : "private", 
                "archived" : false
            }
        ]
    }, 
    "uri" : "/v1/users/65ef0079697a365c4bad3b53/projects", 
    "status" : 200
}


Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.   

This command is similar to Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete), but retrieves for 'all projects' the user is member of, the permissions to the features of the templates.
Using this call for Admin users does not make sense. An empty list will be returned. 
For a collaborator, the command returns the same projects as the call  Projects - Retrieve projects (Collaborator) but will not contain names of the projects. Each project in the list will have a field "permissions" that specifies the operations (create, read, update, delete) are allowed on the features of each template in the project.
For more information about permissions, see  Project/Members - Grant permissions to collaborator

See also:
    Projects - Create a project
    Project/Members - Add a user to a project.
    Project/Members - Retrieve the list of 'all members (users)' of the project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)

Request

GET    /v1/users/65ef0079697a365c4bad3b53/projectmembers
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454

Response

{
    "project_members" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/users/65ef0079697a365c4bad3b53/projectmembers?page=1&perPage=50", 
                "self" : "/v1/users/65ef0079697a365c4bad3b53/projectmembers", 
                "first" : "/v1/users/65ef0079697a365c4bad3b53/projectmembers?page=1&perPage=50"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projectmembers?page=1&perPage=50", 
                "self" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projectmembers", 
                "first" : "https://api.mycumulus.com/v1/users/65ef0079697a365c4bad3b53/projectmembers?page=1&perPage=50"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007a697a365c4bad3b56", 
                "user_id" : "65ef0079697a365c4bad3b53", 
                "project_id" : "65ef0079697a365c4bad3b50", 
                "permissions" : {
                    "features" : [
                        {
                            "template_id" : "65ef007a697a365c4bad3b58", 
                            "permission_types" : [
                                "create", 
                                "read", 
                                "update", 
                                "delete"
                            ]
                        }, 
                        {
                            "template_id" : "65ef007a697a365c4bad3b59", 
                            "permission_types" : [
                                "read", 
                                "update"
                            ]
                        }
                    ]
                }, 
                "created_at" : "2024-03-11T13:00:42.005Z", 
                "updated_at" : "2024-03-11T13:00:42.241Z", 
                "deleted_at" : null, 
                "created_by" : "65ef0079697a365c4bad3b49", 
                "updated_by" : "65ef0079697a365c4bad3b49", 
                "deleted_by" : null
            }
        ]
    }, 
    "uri" : "/v1/users/65ef0079697a365c4bad3b53/projectmembers", 
    "status" : 200
}


Project/Members - Remove a user from a project.   

Remove a collaborator from a project. The collaborator will not be anymore a member of the project. All his permissions to the project are removed.
This call does not remove the collaborator, nor will it remove any data.

See also:
    Project/Members - Add a user to a project.
    Project/Members - Retrieve the list of 'all members (users)' of the project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.

Request

DELETE    /v1/projects/65ef0079697a365c4bad3b50/members/65ef0079697a365c4bad3b55
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454
X-Working-Project-Id: 65ef0079697a365c4bad3b50

Response

{
    "project_member" : {
        "id" : "65ef007a697a365c4bad3b57", 
        "user_id" : "65ef0079697a365c4bad3b55", 
        "project_id" : "65ef0079697a365c4bad3b50", 
        "permissions" : {
            "features" : [
            ]
        }, 
        "created_at" : "2024-03-11T13:00:42.052Z", 
        "updated_at" : null, 
        "deleted_at" : "2024-03-11T13:00:42.487080Z", 
        "created_by" : "65ef0079697a365c4bad3b49", 
        "updated_by" : null, 
        "deleted_by" : "65ef0079697a365c4bad3b49"
    }, 
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/members/65ef0079697a365c4bad3b55", 
    "status" : 200
}


Project/Members - Grant permissions to collaborator   

This command will give permissions to a member of the given project. Only the owner of the project or the Admin is authorised to grant permissions to members.
The request body contains a JSON object named permissions.
Only the structure shown in the example below is valid. The JSON array permissions is an array containing the permissions to be granted for each template.
Valid value in array permission_types:
    - read: the user may read features in the template. If not in the list the user has no access at all to the template.
    - create: the user may create features in the template.
    - update: the user may update existing features in the template.
    - delete: the user may delete features in the template.
When granting a permission, the same permission may not yet be present yet. So either add permissions for a new template, or add a permission for a template already in the list.
The Admin user acts as a super user and has by default all permissions.

See also:
    Project/Members - Revoke permissions from collaborator
    Project/Members - Retrieve information of a member of a project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.
    Project/Members - Retrieve the list of 'all members (users)' of the project.

Request

PUT    /v1/projects/65ef0079697a365c4bad3b50/grant
Content-Type: application/json
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454
X-Working-Project-Id: 65ef0079697a365c4bad3b50

Request Body

{
    "user_id" : "65ef0079697a365c4bad3b53", 
    "permissions" : {
        "features" : [
            {
                "template_id" : "65ef007a697a365c4bad3b59", 
                "permission_types" : [
                    "create", 
                    "read", 
                    "update", 
                    "delete"
                ]
            }
        ]
    }
}

Response

{
    "project_member" : {
        "id" : "65ef007a697a365c4bad3b56", 
        "user_id" : "65ef0079697a365c4bad3b53", 
        "project_id" : "65ef0079697a365c4bad3b50", 
        "permissions" : {
            "features" : [
                {
                    "template_id" : "65ef007a697a365c4bad3b58", 
                    "permission_types" : [
                        "create", 
                        "read", 
                        "update", 
                        "delete"
                    ]
                }, 
                {
                    "template_id" : "65ef007a697a365c4bad3b59", 
                    "permission_types" : [
                        "create", 
                        "read", 
                        "update", 
                        "delete"
                    ]
                }
            ]
        }, 
        "created_at" : "2024-03-11T13:00:42.005Z", 
        "updated_at" : "2024-03-11T13:00:42.520369Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0079697a365c4bad3b49", 
        "updated_by" : "65ef0079697a365c4bad3b49", 
        "deleted_by" : null
    }, 
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/grant", 
    "status" : 200
}


Project/Members - Revoke permissions from collaborator   

This command will revoke permissions from a member of the given project. Only the owner of the project or the Admin is authorised to revoke permissions.The request body and meaning of the names and values is described in: Project/Members - Grant permissions to collaborator
Only permissions that are already in the list may be revoked.

See also:
    Project/Members - Grant permissions to collaborator
    Project/Members - Retrieve information of a member of a project.
    Project/Members - Retrieve the list of 'all projects' user is member of. (Obsolete)
    Project/Members - Retrieve the list of 'all projects (permissions)' user is member of.
    Project/Members - Retrieve the list of 'all members (users)' of the project.

Request

PUT    /v1/projects/65ef0079697a365c4bad3b50/revoke
Content-Type: application/json
X-Auth-Token: 3b54178f1ea20f22e9a513bbb1e3968d3dabba1bc43255965ea687f49755317a48918348dfab7d84d80aa9f64471547837e6fce84792e15d69e5c0ce8fa241cb128e70f71e4594851924429481fb24f6878644a9b68237786c4a7698c0a352295b98f0fb875d9d6e5ca4ad78b443137dc14c42599e3c8b9a853454
X-Working-Project-Id: 65ef0079697a365c4bad3b50

Request Body

{
    "user_id" : "65ef0079697a365c4bad3b53", 
    "permissions" : {
        "features" : [
            {
                "template_id" : "65ef007a697a365c4bad3b59", 
                "permission_types" : [
                    "create", 
                    "read", 
                    "update", 
                    "delete"
                ]
            }
        ]
    }
}

Response

{
    "project_member" : {
        "id" : "65ef007a697a365c4bad3b56", 
        "user_id" : "65ef0079697a365c4bad3b53", 
        "project_id" : "65ef0079697a365c4bad3b50", 
        "permissions" : {
            "features" : [
                {
                    "template_id" : "65ef007a697a365c4bad3b58", 
                    "permission_types" : [
                        "create", 
                        "read", 
                        "update", 
                        "delete"
                    ]
                }
            ]
        }, 
        "created_at" : "2024-03-11T13:00:42.005Z", 
        "updated_at" : "2024-03-11T13:00:42.566266Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0079697a365c4bad3b49", 
        "updated_by" : "65ef0079697a365c4bad3b49", 
        "deleted_by" : null
    }, 
    "uri" : "/v1/projects/65ef0079697a365c4bad3b50/revoke", 
    "status" : 200
}


--- Public API functions: Forms ---


Templates - Create a form   

Creates a new template. A template will normally be used with the MyCumulus app to view, update and collect data that will be represented as features in the MyCumulus database.
The list of attributes specifies the attributes of the features generated from the template.
The list of fields specifies the fields in the form.
The list of attributes and the list of fields must match.

See also:
    Templates - Update the form
    Templates - Delete a form
    Templates - Retrieve a form
    Templates - Duplicate a form
    Templates - Copy a form from domain project
    Templates - Retrieve the list of all forms of a projectStyles - Retrieve styles

Request

POST    /v1/templates
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
Content-Type: application/json
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Request Body

{
    "project_id" : "65ef007a697a365c4bad3b62", 
    "name" : "Survey with photo", 
    "description" : "First Template", 
    "image_file_url" : null, 
    "default_style_id" : null, 
    "feature" : {
        "geometry_type" : "Point", 
        "attributes" : [
            {
                "_class" : "attribute", 
                "name" : "Pointnumber", 
                "type" : "integer", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Code", 
                "type" : "integer", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Distance", 
                "type" : "double", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Comment", 
                "type" : "string", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Photo", 
                "type" : "file"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Date", 
                "type" : "date"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Time", 
                "type" : "time"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Checked", 
                "type" : "boolean", 
                "default_value" : false
            }, 
            {
                "_class" : "attribute", 
                "name" : "Address", 
                "type" : "string"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Community", 
                "type" : "string"
            }
        ]
    }, 
    "form" : {
        "fields" : [
            {
                "_class" : "autoincrementintegerfield", 
                "name" : "Pointnumber", 
                "label" : "Pointnumber", 
                "description" : "Automatically incremented", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "initial_value" : 1000, 
                "step" : 1, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "integerfield", 
                "name" : "Code", 
                "label" : "Alphanumeric code", 
                "description" : "Code used by Pythagoras", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "use_previous_value" : true, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "decimalfield", 
                "name" : "Distance", 
                "label" : "Distance", 
                "description" : "Distance to the object", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Comment", 
                "label" : "Comment", 
                "description" : "", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "photofield", 
                "name" : "Photo", 
                "label" : "Photo", 
                "description" : "Please take a picture", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "photo_size" : "Large", 
                "photo_quality" : "Maximum", 
                "use_previous_value" : false, 
                "constraints" : [
                ]
            }, 
            {
                "_class" : "datefield", 
                "name" : "Date", 
                "label" : "Date", 
                "description" : "Date of start survey", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value_expression" : "=Today()"
            }, 
            {
                "_class" : "timefield", 
                "name" : "Time", 
                "label" : "Time", 
                "description" : "Time of getting location", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Now()"
                ]
            }, 
            {
                "_class" : "booleanfield", 
                "name" : "Checked", 
                "label" : "Checked", 
                "description" : "Has the survey been checked?", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : false
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Address", 
                "label" : "Address", 
                "description" : "Street and house number", 
                "enabled" : false, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Address().StreetAndNumber"
                ]
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Community", 
                "label" : "Community", 
                "description" : "Place of survey", 
                "enabled" : false, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Address().Community"
                ]
            }
        ]
    }
}

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b63", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "Survey with photo", 
        "description" : "First Template", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "Pointnumber", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Distance", 
                    "type" : "double", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Comment", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Photo", 
                    "type" : "file", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Date", 
                    "type" : "date", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Time", 
                    "type" : "time", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Checked", 
                    "type" : "boolean", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Address", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Community", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "autoincrementintegerfield", 
                    "name" : "Pointnumber", 
                    "label" : "Pointnumber", 
                    "description" : "Automatically incremented", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "initial_value" : 1000, 
                    "step" : 1
                }, 
                {
                    "_class" : "integerfield", 
                    "name" : "Code", 
                    "label" : "Alphanumeric code", 
                    "description" : "Code used by Pythagoras", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : true, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "decimalfield", 
                    "name" : "Distance", 
                    "label" : "Distance", 
                    "description" : "Distance to the object", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Comment", 
                    "label" : "Comment", 
                    "description" : "", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "photofield", 
                    "name" : "Photo", 
                    "label" : "Photo", 
                    "description" : "Please take a picture", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "photo_quality" : "maximum", 
                    "photo_size" : "large"
                }, 
                {
                    "_class" : "datefield", 
                    "name" : "Date", 
                    "label" : "Date", 
                    "description" : "Date of start survey", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : "=Today()", 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "timefield", 
                    "name" : "Time", 
                    "label" : "Time", 
                    "description" : "Time of getting location", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Now()"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "booleanfield", 
                    "name" : "Checked", 
                    "label" : "Checked", 
                    "description" : "Has the survey been checked?", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : false
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Address", 
                    "label" : "Address", 
                    "description" : "Street and house number", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().StreetAndNumber"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Community", 
                    "label" : "Community", 
                    "description" : "Place of survey", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().Community"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.006667Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/templates", 
    "status" : 201
}


Templates - Update the form   

Update the template. The Request Body may contain only the properties to be updated. However it's advised to send the complete updated template again.

See also:
    Templates - Create a form
    Templates - Retrieve a form

Request

PUT    /v1/templates/65ef007b697a365c4bad3b63
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
Content-Type: application/json
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Request Body

{
    "feature" : {
        "geometry_type" : "Point", 
        "attributes" : [
            {
                "_class" : "attribute", 
                "name" : "Pointnumber", 
                "type" : "integer", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Code", 
                "type" : "string", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Distance", 
                "type" : "double", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Comment", 
                "type" : "string", 
                "default_value" : null
            }, 
            {
                "_class" : "attribute", 
                "name" : "Photo", 
                "type" : "file"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Date", 
                "type" : "date"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Time", 
                "type" : "time"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Checked", 
                "type" : "boolean", 
                "default_value" : false
            }, 
            {
                "_class" : "attribute", 
                "name" : "Address", 
                "type" : "string"
            }, 
            {
                "_class" : "attribute", 
                "name" : "Community", 
                "type" : "string"
            }
        ]
    }, 
    "form" : {
        "fields" : [
            {
                "_class" : "autoincrementintegerfield", 
                "name" : "Pointnumber", 
                "label" : "Pointnumber", 
                "description" : "Automatically incremented", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "initial_value" : 1000, 
                "step" : 1, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Code", 
                "label" : "Alphanumeric code", 
                "description" : "AN Code used by Pythagoras", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "use_previous_value" : true, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "decimalfield", 
                "name" : "Distance", 
                "label" : "Distance", 
                "description" : "Distance to the object", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Comment", 
                "label" : "Comment", 
                "description" : "", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : null
            }, 
            {
                "_class" : "photofield", 
                "name" : "Photo", 
                "label" : "Photo", 
                "description" : "Please take a picture", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "photo_size" : "Large", 
                "photo_quality" : "Maximum", 
                "use_previous_value" : false, 
                "constraints" : [
                ]
            }, 
            {
                "_class" : "datefield", 
                "name" : "Date", 
                "label" : "Date", 
                "description" : "Date of start survey", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value_expression" : "=Today()"
            }, 
            {
                "_class" : "timefield", 
                "name" : "Time", 
                "label" : "Time", 
                "description" : "Time of getting location", 
                "enabled" : true, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Now()"
                ]
            }, 
            {
                "_class" : "booleanfield", 
                "name" : "Checked", 
                "label" : "Checked", 
                "description" : "Has the survey been checked?", 
                "enabled" : true, 
                "visible" : true, 
                "required" : true, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "default_value" : false
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Address", 
                "label" : "Address", 
                "description" : "Street and house number", 
                "enabled" : false, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Address().StreetAndNumber"
                ]
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Community", 
                "label" : "Community", 
                "description" : "Place of survey", 
                "enabled" : false, 
                "visible" : true, 
                "required" : false, 
                "use_previous_value" : false, 
                "constraints" : [
                ], 
                "event_actions" : [
                    "OnLocationChange->Address().Community"
                ]
            }
        ]
    }
}

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b63", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "Survey with photo", 
        "description" : "First Template", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "Pointnumber", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Distance", 
                    "type" : "double", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Comment", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Photo", 
                    "type" : "file", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Date", 
                    "type" : "date", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Time", 
                    "type" : "time", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Checked", 
                    "type" : "boolean", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Address", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Community", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "autoincrementintegerfield", 
                    "name" : "Pointnumber", 
                    "label" : "Pointnumber", 
                    "description" : "Automatically incremented", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "initial_value" : 1000, 
                    "step" : 1
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Code", 
                    "label" : "Alphanumeric code", 
                    "description" : "AN Code used by Pythagoras", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : true, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "decimalfield", 
                    "name" : "Distance", 
                    "label" : "Distance", 
                    "description" : "Distance to the object", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Comment", 
                    "label" : "Comment", 
                    "description" : "", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "photofield", 
                    "name" : "Photo", 
                    "label" : "Photo", 
                    "description" : "Please take a picture", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "photo_quality" : "maximum", 
                    "photo_size" : "large"
                }, 
                {
                    "_class" : "datefield", 
                    "name" : "Date", 
                    "label" : "Date", 
                    "description" : "Date of start survey", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : "=Today()", 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "timefield", 
                    "name" : "Time", 
                    "label" : "Time", 
                    "description" : "Time of getting location", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Now()"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "booleanfield", 
                    "name" : "Checked", 
                    "label" : "Checked", 
                    "description" : "Has the survey been checked?", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : false
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Address", 
                    "label" : "Address", 
                    "description" : "Street and house number", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().StreetAndNumber"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Community", 
                    "label" : "Community", 
                    "description" : "Place of survey", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().Community"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.006Z", 
        "updated_at" : "2024-03-11T13:00:43.056318Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : "65ef007a697a365c4bad3b5b", 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/templates/65ef007b697a365c4bad3b63", 
    "status" : 200
}


Templates - Number of forms in a project   

Returns the number of templates in the project.

See also:
    Templates - Create a form
    Templates - Retrieve the list of all forms of a project

Request

GET    /v1/projects/65ef007a697a365c4bad3b62/templates/count
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Response

{
    "number_of_templates" : 1
}


Templates - Retrieve the list of all forms of a project   

Retrieve the list of all the templates of a specific project. Also if the project is a domain or a project template.
The command: GET /v1/templates returns the same list if the project is a plain project.
When using the authentication of a collaborator, the command GET /v1/templates returns an error if the project is a domain or a project template.

See also:
    Templates - Create a form
    Templates - Number of forms in a project

Request

GET    /v1/projects/65ef007a697a365c4bad3b62/templates?page=1&perPage=100
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Response

{
    "templates" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/projects/65ef007a697a365c4bad3b62/templates?page=1&perPage=100", 
                "self" : "/v1/projects/65ef007a697a365c4bad3b62/templates", 
                "first" : "/v1/projects/65ef007a697a365c4bad3b62/templates?page=1&perPage=100"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/projects/65ef007a697a365c4bad3b62/templates?page=1&perPage=100", 
                "self" : "https://api.mycumulus.com/v1/projects/65ef007a697a365c4bad3b62/templates", 
                "first" : "https://api.mycumulus.com/v1/projects/65ef007a697a365c4bad3b62/templates?page=1&perPage=100"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007b697a365c4bad3b63", 
                "project_id" : "65ef007a697a365c4bad3b62", 
                "name" : "Survey with photo", 
                "description" : "First Template", 
                "image_file_url" : null, 
                "feature" : {
                    "geometry_type" : "Point", 
                    "attributes" : [
                        {
                            "_class" : "attribute", 
                            "name" : "Pointnumber", 
                            "type" : "integer", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Code", 
                            "type" : "string", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Distance", 
                            "type" : "double", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Comment", 
                            "type" : "string", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Photo", 
                            "type" : "file", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Date", 
                            "type" : "date", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Time", 
                            "type" : "time", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Checked", 
                            "type" : "boolean", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Address", 
                            "type" : "string", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }, 
                        {
                            "_class" : "attribute", 
                            "name" : "Community", 
                            "type" : "string", 
                            "default_value" : null, 
                            "restrictions" : [
                            ]
                        }
                    ]
                }, 
                "form" : {
                    "fields" : [
                        {
                            "_class" : "autoincrementintegerfield", 
                            "name" : "Pointnumber", 
                            "label" : "Pointnumber", 
                            "description" : "Automatically incremented", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : true, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "initial_value" : 1000, 
                            "step" : 1
                        }, 
                        {
                            "_class" : "stringfield", 
                            "name" : "Code", 
                            "label" : "Alphanumeric code", 
                            "description" : "AN Code used by Pythagoras", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : true, 
                            "use_previous_value" : true, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "decimalfield", 
                            "name" : "Distance", 
                            "label" : "Distance", 
                            "description" : "Distance to the object", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "stringfield", 
                            "name" : "Comment", 
                            "label" : "Comment", 
                            "description" : "", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "photofield", 
                            "name" : "Photo", 
                            "label" : "Photo", 
                            "description" : "Please take a picture", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "photo_quality" : "maximum", 
                            "photo_size" : "large"
                        }, 
                        {
                            "_class" : "datefield", 
                            "name" : "Date", 
                            "label" : "Date", 
                            "description" : "Date of start survey", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : "=Today()", 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "timefield", 
                            "name" : "Time", 
                            "label" : "Time", 
                            "description" : "Time of getting location", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : [
                                "OnLocationChange->Now()"
                            ], 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "booleanfield", 
                            "name" : "Checked", 
                            "label" : "Checked", 
                            "description" : "Has the survey been checked?", 
                            "enabled" : true, 
                            "visible" : true, 
                            "required" : true, 
                            "use_previous_value" : false, 
                            "event_actions" : null, 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : false
                        }, 
                        {
                            "_class" : "stringfield", 
                            "name" : "Address", 
                            "label" : "Address", 
                            "description" : "Street and house number", 
                            "enabled" : false, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : [
                                "OnLocationChange->Address().StreetAndNumber"
                            ], 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }, 
                        {
                            "_class" : "stringfield", 
                            "name" : "Community", 
                            "label" : "Community", 
                            "description" : "Place of survey", 
                            "enabled" : false, 
                            "visible" : true, 
                            "required" : false, 
                            "use_previous_value" : false, 
                            "event_actions" : [
                                "OnLocationChange->Address().Community"
                            ], 
                            "default_value_expression" : null, 
                            "constraints" : [
                            ], 
                            "default_value" : null
                        }
                    ]
                }, 
                "map_style" : null, 
                "template" : false, 
                "created_at" : "2024-03-11T13:00:43.006Z", 
                "updated_at" : "2024-03-11T13:00:43.056Z", 
                "deleted_at" : null, 
                "created_by" : "65ef007a697a365c4bad3b5b", 
                "updated_by" : "65ef007a697a365c4bad3b5b", 
                "deleted_by" : null, 
                "visibility" : "private", 
                "is_template" : false, 
                "default_style_id" : null
            }
        ]
    }, 
    "uri" : "/v1/projects/65ef007a697a365c4bad3b62/templates", 
    "status" : 200
}


Templates - Retrieve a form   

Retrieves a template.

See also:
    Templates - Create a form

Request

GET    /v1/templates/65ef007b697a365c4bad3b63
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b63", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "Survey with photo", 
        "description" : "First Template", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "Pointnumber", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Distance", 
                    "type" : "double", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Comment", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Photo", 
                    "type" : "file", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Date", 
                    "type" : "date", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Time", 
                    "type" : "time", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Checked", 
                    "type" : "boolean", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Address", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Community", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "autoincrementintegerfield", 
                    "name" : "Pointnumber", 
                    "label" : "Pointnumber", 
                    "description" : "Automatically incremented", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "initial_value" : 1000, 
                    "step" : 1
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Code", 
                    "label" : "Alphanumeric code", 
                    "description" : "AN Code used by Pythagoras", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : true, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "decimalfield", 
                    "name" : "Distance", 
                    "label" : "Distance", 
                    "description" : "Distance to the object", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Comment", 
                    "label" : "Comment", 
                    "description" : "", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "photofield", 
                    "name" : "Photo", 
                    "label" : "Photo", 
                    "description" : "Please take a picture", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "photo_quality" : "maximum", 
                    "photo_size" : "large"
                }, 
                {
                    "_class" : "datefield", 
                    "name" : "Date", 
                    "label" : "Date", 
                    "description" : "Date of start survey", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : "=Today()", 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "timefield", 
                    "name" : "Time", 
                    "label" : "Time", 
                    "description" : "Time of getting location", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Now()"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "booleanfield", 
                    "name" : "Checked", 
                    "label" : "Checked", 
                    "description" : "Has the survey been checked?", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : false
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Address", 
                    "label" : "Address", 
                    "description" : "Street and house number", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().StreetAndNumber"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Community", 
                    "label" : "Community", 
                    "description" : "Place of survey", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().Community"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.006Z", 
        "updated_at" : "2024-03-11T13:00:43.056Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : "65ef007a697a365c4bad3b5b", 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/templates/65ef007b697a365c4bad3b63", 
    "status" : 200
}


Templates - Delete a form   

Deletes a form.

See also:
    Templates - Create a form

Request

DELETE    /v1/templates/65ef007b697a365c4bad3b63
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd
X-Working-Project-Id: 65ef007a697a365c4bad3b62

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b63", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "Survey with photo", 
        "description" : "First Template", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "Pointnumber", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Distance", 
                    "type" : "double", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Comment", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Photo", 
                    "type" : "file", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Date", 
                    "type" : "date", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Time", 
                    "type" : "time", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Checked", 
                    "type" : "boolean", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Address", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Community", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "autoincrementintegerfield", 
                    "name" : "Pointnumber", 
                    "label" : "Pointnumber", 
                    "description" : "Automatically incremented", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "initial_value" : 1000, 
                    "step" : 1
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Code", 
                    "label" : "Alphanumeric code", 
                    "description" : "AN Code used by Pythagoras", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : true, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "decimalfield", 
                    "name" : "Distance", 
                    "label" : "Distance", 
                    "description" : "Distance to the object", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Comment", 
                    "label" : "Comment", 
                    "description" : "", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "photofield", 
                    "name" : "Photo", 
                    "label" : "Photo", 
                    "description" : "Please take a picture", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "photo_quality" : "maximum", 
                    "photo_size" : "large"
                }, 
                {
                    "_class" : "datefield", 
                    "name" : "Date", 
                    "label" : "Date", 
                    "description" : "Date of start survey", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : "=Today()", 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "timefield", 
                    "name" : "Time", 
                    "label" : "Time", 
                    "description" : "Time of getting location", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Now()"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "booleanfield", 
                    "name" : "Checked", 
                    "label" : "Checked", 
                    "description" : "Has the survey been checked?", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : false
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Address", 
                    "label" : "Address", 
                    "description" : "Street and house number", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().StreetAndNumber"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Community", 
                    "label" : "Community", 
                    "description" : "Place of survey", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().Community"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.006Z", 
        "updated_at" : "2024-03-11T13:00:43.056Z", 
        "deleted_at" : "2024-03-11T13:00:43.244466Z", 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : "65ef007a697a365c4bad3b5b", 
        "deleted_by" : "65ef007a697a365c4bad3b5b", 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/templates/65ef007b697a365c4bad3b63", 
    "status" : 200
}


Templates - Duplicate a form   

Duplicates a form.

See also:
    Templates - Create a form
    Templates - Copy a form from domain project

Request

POST    /v1/template/duplicate
Content-Type: application/json
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd

Request Body

{
    "project_id" : "65ef007a697a365c4bad3b62", 
    "template_id" : "65ef007b697a365c4bad3b64", 
    "name" : "First Template Copy", 
    "description" : ""
}

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b65", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "First Template Copy", 
        "description" : "First Template", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "Pointnumber", 
                    "type" : "integer", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Distance", 
                    "type" : "double", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Comment", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Photo", 
                    "type" : "file", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Date", 
                    "type" : "date", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Time", 
                    "type" : "time", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Checked", 
                    "type" : "boolean", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Address", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Community", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "autoincrementintegerfield", 
                    "name" : "Pointnumber", 
                    "label" : "Pointnumber", 
                    "description" : "Automatically incremented", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "initial_value" : 1000, 
                    "step" : 1
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Code", 
                    "label" : "Alphanumeric code", 
                    "description" : "AN Code used by Pythagoras", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : true, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "decimalfield", 
                    "name" : "Distance", 
                    "label" : "Distance", 
                    "description" : "Distance to the object", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Comment", 
                    "label" : "Comment", 
                    "description" : "", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "photofield", 
                    "name" : "Photo", 
                    "label" : "Photo", 
                    "description" : "Please take a picture", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "photo_quality" : "maximum", 
                    "photo_size" : "large"
                }, 
                {
                    "_class" : "datefield", 
                    "name" : "Date", 
                    "label" : "Date", 
                    "description" : "Date of start survey", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : "=Today()", 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "timefield", 
                    "name" : "Time", 
                    "label" : "Time", 
                    "description" : "Time of getting location", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Now()"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "booleanfield", 
                    "name" : "Checked", 
                    "label" : "Checked", 
                    "description" : "Has the survey been checked?", 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : false
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Address", 
                    "label" : "Address", 
                    "description" : "Street and house number", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().StreetAndNumber"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Community", 
                    "label" : "Community", 
                    "description" : "Place of survey", 
                    "enabled" : false, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : [
                        "OnLocationChange->Address().Community"
                    ], 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : null
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.334688Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/template/duplicate", 
    "status" : 201
}


Templates - Copy a form from domain project   

Duplicates a private or public form stored in a domain project.
The user calling this API will become the owner of the form. Collaborators who are member of the project where the duplicated form is stored have no access to the new form.

See also:
    Templates - Create a form
    Templates - Duplicate a form

Request

POST    /v1/form/template/copy
Content-Type: application/json
X-Auth-Token: dc398e49753198da2eae9f6c3e74d26d16aff62c68134f87f2dca2576efb2a1d4a9fa37f22c85d4546d2375fe5781a5afaf3bb3e6a721e8728b185aec97962e5a9bd4791f883facfad2cbc27cf28551e4d54c52925133aab42d8a3893a5a3338dd74df2764a1b5769ac8582a365b1ba74aefba072c30d4d6c62fc043abfd

Request Body

{
    "user_id" : "65ef007a697a365c4bad3b5b", 
    "project_id" : "65ef007a697a365c4bad3b62", 
    "template_id" : "65ef007b697a365c4bad3b6a"
}

Response

{
    "template" : {
        "id" : "65ef007b697a365c4bad3b6b", 
        "project_id" : "65ef007a697a365c4bad3b62", 
        "name" : "Drilling", 
        "description" : "Simple", 
        "image_file_url" : null, 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "F1 Field 1", 
                    "type" : "string", 
                    "default_value" : "F1 Default Value Field 1", 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "F1 Field 2", 
                    "type" : "string", 
                    "default_value" : "F1 Default Value Field 2", 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "F1 Field 3", 
                    "type" : "string", 
                    "default_value" : "F1 Default Value Field 3", 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "stringfield", 
                    "name" : "F1 Field 1", 
                    "label" : "F1 Label Field 1", 
                    "description" : "F1 Description Field 1", 
                    "enabled" : false, 
                    "visible" : false, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : "F1 Default Value Field 1"
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "F1 Field 2", 
                    "label" : "F1 Label Field 2", 
                    "description" : "F1 Description Field 2", 
                    "enabled" : false, 
                    "visible" : false, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : "F1 Default Value Field 2"
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "F1 Field 3", 
                    "label" : "F1 Label Field 3", 
                    "description" : "F1 Description Field 3", 
                    "enabled" : false, 
                    "visible" : false, 
                    "required" : true, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : "F1 Default Value Field 3"
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:43.722849Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007a697a365c4bad3b5b", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "uri" : "/v1/form/template/copy", 
    "status" : 201
}


--- Public API functions: Styles ---


Styles - Create a style   

Creates a style. A template can link to a style, allowing any MyCumulus client to make a graphical representation of the geometry, based on the information in the style.
The elements in the array indexes contains a "Name" field and a "Values field" (an array of value). For each combination Name-Value, there must be an entry in the attributes list. For example: when there are 2 elements in the name field, the first one containing 4 values and the second 3 values, the attributes list must contain exactly 12 style attributes.
The sequence in this array (4x3): (I(1).V1, I(2).V1), (I(1).V1, I(2).V2), (I(1).V1, I(2).V3, (I(1).V2, I(2).V1), (I(1).V2, I(2).V2), ... (I(1).V4, I(2).V3).
The attributes are used by MyCumulus clients to give the right representation (style) of each feature by taking the values of the fields whose names/values match with the names/values in the indexes array.

See also:
    Styles - Update the style
    Styles - Delete a style
    Styles - Retrieve a style

Request

POST    /v1/styles
Content-Type: application/json
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Request Body

{
    "name" : "Style Sewage Inspection", 
    "description" : "Symbols used for Sewage Inspection", 
    "indexes" : [
        {
            "name" : "Building", 
            "values" : [
                "House", 
                "School", 
                "Factory", 
                null
            ]
        }, 
        {
            "name" : "Ownership", 
            "values" : [
                "Private", 
                "Public", 
                null
            ]
        }
    ], 
    "attributes" : [
        {
            "layer" : "House Private", 
            "color" : [
                255, 
                0, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "House Public", 
            "color" : [
                0, 
                255, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "House", 
            "color" : [
                0, 
                0, 
                255
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "School Private", 
            "color" : [
                255, 
                0, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "School Public", 
            "color" : [
                0, 
                255, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "School", 
            "color" : [
                0, 
                0, 
                255
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Factory Private", 
            "color" : [
                255, 
                0, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Factory Public", 
            "color" : [
                0, 
                255, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Factory", 
            "color" : [
                0, 
                0, 
                255
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Building Private", 
            "color" : [
                255, 
                0, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Building Public", 
            "color" : [
                0, 
                255, 
                0
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }, 
        {
            "layer" : "Building", 
            "color" : [
                0, 
                0, 
                255
            ], 
            "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
            "point_style" : "square"
        }
    ]
}

Response

{
    "style" : {
        "id" : "65ef007c697a365c4bad3b77", 
        "created_at" : "2024-03-11T13:00:44.367027Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007c697a365c4bad3b6d", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "indexes" : [
            {
                "name" : "Building", 
                "values" : [
                    "House", 
                    "School", 
                    "Factory", 
                    null
                ]
            }, 
            {
                "name" : "Ownership", 
                "values" : [
                    "Private", 
                    "Public", 
                    null
                ]
            }
        ], 
        "attributes" : [
            {
                "color" : [
                    255, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "House Private", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    255, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "House Public", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    255
                ], 
                "fill_color" : null, 
                "layer" : "House", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    255, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "School Private", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    255, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "School Public", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    255
                ], 
                "fill_color" : null, 
                "layer" : "School", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    255, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Factory Private", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    255, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Factory Public", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    255
                ], 
                "fill_color" : null, 
                "layer" : "Factory", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    255, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Building Private", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    255, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Building Public", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    255
                ], 
                "fill_color" : null, 
                "layer" : "Building", 
                "icon_url" : "/v1/files/public/65ef007c697a365c4bad3b75/Letter_H_Manual.png", 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "square", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }
        ], 
        "name" : "Style Sewage Inspection", 
        "description" : "Symbols used for Sewage Inspection", 
        "visibility" : "private", 
        "customer_id" : "65ef007c697a365c4bad3b6f"
    }, 
    "uri" : "/v1/styles", 
    "status" : 201
}


Styles - Update the style   

Update the style

See also:
    Styles - Create a style
    Styles - Retrieve a style

Request

PUT    /v1/styles/65ef007c697a365c4bad3b77
Content-Type: application/json
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Request Body

{
    "name" : "Style Sewage Inspection", 
    "description" : "Symbols used for Sewage Inspection", 
    "indexes" : [
        {
            "name" : "Building", 
            "values" : [
                "House", 
                "School", 
                "Factory", 
                null
            ]
        }
    ], 
    "attributes" : [
        {
            "layer" : "House", 
            "color" : [
                0, 
                0, 
                0
            ], 
            "icon_url" : null, 
            "point_style" : "circle"
        }, 
        {
            "layer" : "School", 
            "color" : [
                0, 
                0, 
                0
            ], 
            "icon_url" : null, 
            "point_style" : "circle"
        }, 
        {
            "layer" : "Factory", 
            "color" : [
                0, 
                0, 
                0
            ], 
            "icon_url" : null, 
            "point_style" : "circle"
        }, 
        {
            "layer" : "Building", 
            "color" : [
                0, 
                0, 
                0
            ], 
            "icon_url" : null, 
            "point_style" : "circle"
        }
    ]
}

Response

{
    "style" : {
        "id" : "65ef007c697a365c4bad3b77", 
        "created_at" : "2024-03-11T13:00:44.367Z", 
        "updated_at" : "2024-03-11T13:00:44.412378Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007c697a365c4bad3b6d", 
        "updated_by" : "65ef007c697a365c4bad3b6d", 
        "deleted_by" : null, 
        "indexes" : [
            {
                "name" : "Building", 
                "values" : [
                    "House", 
                    "School", 
                    "Factory", 
                    null
                ]
            }
        ], 
        "attributes" : [
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "House", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "School", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Factory", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Building", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }
        ], 
        "name" : "Style Sewage Inspection", 
        "description" : "Symbols used for Sewage Inspection", 
        "visibility" : "private", 
        "customer_id" : "65ef007c697a365c4bad3b6f"
    }, 
    "uri" : "/v1/styles/65ef007c697a365c4bad3b77", 
    "status" : 201
}


Styles - Retrieve a style   

Retrieves the style

See also:
    Styles - Create a style

Request

GET    /v1/styles/65ef007c697a365c4bad3b77
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Response

{
    "style" : {
        "id" : "65ef007c697a365c4bad3b77", 
        "created_at" : "2024-03-11T13:00:44.367Z", 
        "updated_at" : "2024-03-11T13:00:44.412Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007c697a365c4bad3b6d", 
        "updated_by" : "65ef007c697a365c4bad3b6d", 
        "deleted_by" : null, 
        "indexes" : [
            {
                "name" : "Building", 
                "values" : [
                    "House", 
                    "School", 
                    "Factory", 
                    null
                ]
            }
        ], 
        "attributes" : [
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "House", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "School", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Factory", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Building", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }
        ], 
        "name" : "Style Sewage Inspection", 
        "description" : "Symbols used for Sewage Inspection", 
        "visibility" : "private", 
        "customer_id" : "65ef007c697a365c4bad3b6f"
    }, 
    "uri" : "/v1/styles/65ef007c697a365c4bad3b77", 
    "status" : 200
}


Styles - Retrieve styles   

Retrieves the list of all private or public styles.
    - visibility: "private", or "public"
If visibility is omitted from the query, both private and public styles are returned.

See also:
    Styles - Create a style

Request

GET    /v1/styles?visibility=private
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Response

{
    "styles" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/styles?page=1&perPage=100", 
                "self" : "/v1/styles", 
                "first" : "/v1/styles?page=1&perPage=100"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/styles?page=1&perPage=100", 
                "self" : "https://api.mycumulus.com/v1/styles", 
                "first" : "https://api.mycumulus.com/v1/styles?page=1&perPage=100"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007c697a365c4bad3b77", 
                "created_at" : "2024-03-11T13:00:44.367Z", 
                "updated_at" : "2024-03-11T13:00:44.412Z", 
                "deleted_at" : null, 
                "created_by" : "65ef007c697a365c4bad3b6d", 
                "updated_by" : "65ef007c697a365c4bad3b6d", 
                "deleted_by" : null, 
                "indexes" : [
                    {
                        "name" : "Building", 
                        "values" : [
                            "House", 
                            "School", 
                            "Factory", 
                            null
                        ]
                    }
                ], 
                "attributes" : [
                    {
                        "color" : [
                            0, 
                            0, 
                            0
                        ], 
                        "fill_color" : null, 
                        "layer" : "House", 
                        "icon_url" : null, 
                        "line_style" : null, 
                        "line_thickness" : null, 
                        "outlined_linestring_thickness" : null, 
                        "polygon_pattern" : null, 
                        "autocad_block" : null, 
                        "pythagoras_style" : null, 
                        "point_style" : "circle", 
                        "point_radius" : null, 
                        "annotation" : null, 
                        "fields" : null, 
                        "comment" : null
                    }, 
                    {
                        "color" : [
                            0, 
                            0, 
                            0
                        ], 
                        "fill_color" : null, 
                        "layer" : "School", 
                        "icon_url" : null, 
                        "line_style" : null, 
                        "line_thickness" : null, 
                        "outlined_linestring_thickness" : null, 
                        "polygon_pattern" : null, 
                        "autocad_block" : null, 
                        "pythagoras_style" : null, 
                        "point_style" : "circle", 
                        "point_radius" : null, 
                        "annotation" : null, 
                        "fields" : null, 
                        "comment" : null
                    }, 
                    {
                        "color" : [
                            0, 
                            0, 
                            0
                        ], 
                        "fill_color" : null, 
                        "layer" : "Factory", 
                        "icon_url" : null, 
                        "line_style" : null, 
                        "line_thickness" : null, 
                        "outlined_linestring_thickness" : null, 
                        "polygon_pattern" : null, 
                        "autocad_block" : null, 
                        "pythagoras_style" : null, 
                        "point_style" : "circle", 
                        "point_radius" : null, 
                        "annotation" : null, 
                        "fields" : null, 
                        "comment" : null
                    }, 
                    {
                        "color" : [
                            0, 
                            0, 
                            0
                        ], 
                        "fill_color" : null, 
                        "layer" : "Building", 
                        "icon_url" : null, 
                        "line_style" : null, 
                        "line_thickness" : null, 
                        "outlined_linestring_thickness" : null, 
                        "polygon_pattern" : null, 
                        "autocad_block" : null, 
                        "pythagoras_style" : null, 
                        "point_style" : "circle", 
                        "point_radius" : null, 
                        "annotation" : null, 
                        "fields" : null, 
                        "comment" : null
                    }
                ], 
                "name" : "Style Sewage Inspection", 
                "description" : "Symbols used for Sewage Inspection", 
                "visibility" : "private", 
                "customer_id" : "65ef007c697a365c4bad3b6f"
            }
        ]
    }, 
    "uri" : "/v1/styles", 
    "status" : 200
}


Styles - Template and Style compatible   

Returns true if the style is compatible with the given form. A style is compatible if the name and type of the indexes matches with fields in the form. In other words: the style can be applied to features of the given form.

See also:
    Styles - Create a style
    Styles - List of compatible styles

Request

GET    /v1/template/65ef007c697a365c4bad3b78/style/65ef007c697a365c4bad3b77/compatible
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Response

{
    "compatible" : false, 
    "uri" : "/v1/template/65ef007c697a365c4bad3b78/style/65ef007c697a365c4bad3b77/compatible", 
    "status" : 200
}


Styles - List of compatible styles   

Returns all styles that are compatible with the given form. The list will return the "private" or "public" styles depending on the value of "visibility" in the query.
    - visibility: "private", or "public"
If visibility is omitted from the query, both private and public styles are returned.

See also:
    Styles - Create a style
    Styles - Template and Style compatible

Request

GET    /v1/template/65ef007c697a365c4bad3b78/styles?visibility=public
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Response

{
    "styles" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/template/65ef007c697a365c4bad3b78/styles?page=0&perPage=100", 
                "self" : "/v1/template/65ef007c697a365c4bad3b78/styles", 
                "first" : "/v1/template/65ef007c697a365c4bad3b78/styles?page=1&perPage=100"
            }, 
            "pages" : 0, 
            "total_count" : 0, 
            "page" : 1, 
            "page_count" : 0, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/template/65ef007c697a365c4bad3b78/styles?page=0&perPage=100", 
                "self" : "https://api.mycumulus.com/v1/template/65ef007c697a365c4bad3b78/styles", 
                "first" : "https://api.mycumulus.com/v1/template/65ef007c697a365c4bad3b78/styles?page=1&perPage=100"
            }
        }, 
        "instances" : [
        ]
    }, 
    "uri" : "/v1/template/65ef007c697a365c4bad3b78/styles", 
    "status" : 200
}


Styles - Delete a style   

Deletes the style

See also:
    Styles - Create a style

Request

DELETE    /v1/styles/65ef007c697a365c4bad3b77
X-Auth-Token: 8ed558875765ec5169e7d38dc78289c5892786faf2abb8fe625f680d7ad14d6e581d3cef4c9cda8559e87601a5a282231771f4ac69333275bdab60c74a1d7de7836ec98e9ac893dbce6cd392e117dd5e7ddb9a63becfbb130e7bed295d6373b9674ee5b14bb0176749cd83798b8d6b7e3ed9c5e14948b510309a1627c

Response

{
    "style" : {
        "id" : "65ef007c697a365c4bad3b77", 
        "created_at" : "2024-03-11T13:00:44.367Z", 
        "updated_at" : "2024-03-11T13:00:44.412Z", 
        "deleted_at" : "2024-03-11T13:00:44.760238Z", 
        "created_by" : "65ef007c697a365c4bad3b6d", 
        "updated_by" : "65ef007c697a365c4bad3b6d", 
        "deleted_by" : "65ef007c697a365c4bad3b6d", 
        "indexes" : [
            {
                "name" : "Building", 
                "values" : [
                    "House", 
                    "School", 
                    "Factory", 
                    null
                ]
            }
        ], 
        "attributes" : [
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "House", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "School", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Factory", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }, 
            {
                "color" : [
                    0, 
                    0, 
                    0
                ], 
                "fill_color" : null, 
                "layer" : "Building", 
                "icon_url" : null, 
                "line_style" : null, 
                "line_thickness" : null, 
                "outlined_linestring_thickness" : null, 
                "polygon_pattern" : null, 
                "autocad_block" : null, 
                "pythagoras_style" : null, 
                "point_style" : "circle", 
                "point_radius" : null, 
                "annotation" : null, 
                "fields" : null, 
                "comment" : null
            }
        ], 
        "name" : "Style Sewage Inspection", 
        "description" : "Symbols used for Sewage Inspection", 
        "visibility" : "private", 
        "customer_id" : "65ef007c697a365c4bad3b6f"
    }, 
    "uri" : "/v1/styles/65ef007c697a365c4bad3b77", 
    "status" : 200
}


--- Public API functions: Features ---


Features - Upload a feature   

Uploads a new feature. If the user requesting the upload is a collaborator, and is not the owner of the project, he must be:
    1. Member of the project and
    2. Have the permission to create features.

Binary data (photos, etc>) are not stored in a feature. Rather they are uploaded as files. The feature will contain links to the files.
The field sequence_number in the request body is obligatory and must be a UUID. When missing or not unique, an error is returned. When the feature contains links to files, the feature_sequence_number used when uploading a file must be the same as the sequence_number of the feature. The sequence number can be used if the internet connection is not stable and may cause that the upload command needs to be sent again. When resending in case of communication errors, use the same sequence number. If not, the record will be stored twice on the server. Regarding file names see also: Files - Upload a private file

The order of the coordinates must be Latitude, Longitude, Elevation. Latitude and longitude are expressed in decimal degrees.

The field attributes should contain all attributes that are also in the template. If name and/or type do not match with the template, an error will be returned. If a field is not present the default value, if any, will be stored. Else the field is not stored in the database.

See also:
    Files - Upload a private file
    Templates - Create a form
    Project/Members - Add a user to a project.
    Project/Members - Grant permissions to collaborator

Request

POST    /v1/templates/65ef007d697a365c4bad3b82/features
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
Content-Type: application/json
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "geometry" : {
        "type" : "Point", 
        "coordinates" : [
            51.3021300000000, 
            4.88400400000000, 
            22.0000000000000, 
            9.87600000000000
        ]
    }, 
    "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
    "template_id" : "65ef007d697a365c4bad3b82", 
    "attributes" : {
        "T1 Field 1" : "F1 Value 1", 
        "T1 Field 2" : "F1 Value 2", 
        "T1 Field 3" : "F1 Value 3"
    }
}

Response

{
    "feature" : {
        "id" : "65ef007d697a365c4bad3b84", 
        "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
        "template_id" : "65ef007d697a365c4bad3b82", 
        "geometry" : {
            "type" : "Point", 
            "coordinates" : [
                51.30213, 
                4.884004, 
                22.0, 
                0.0
            ]
        }, 
        "attributes" : {
            "T1 Field 1" : "F1 Value 1", 
            "T1 Field 2" : "F1 Value 2", 
            "T1 Field 3" : "F1 Value 3"
        }, 
        "created_at" : "2024-03-11T13:06:35.910Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : null, 
        "deleted_by" : null
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features", 
    "status" : 201
}


Features - Update the feature   

Update a feature. If the user requesting the update is a collaborator, and is not the owner of the project, he must be:
    1. Member of the project and
    2. Have the permission to update features.

Regarding file names see also: Files - Upload a private file

The order of the coordinates must be Latitude, Longitude, Elevation. Latitude and longitude are expressed in decimal degrees.

The field attributes should contain all attributes that are also in the template. If name and/or type do not match with the template, an error will be returned. If a field is not present the default value, if any, will be stored. Else the field is not stored in the database.

See also:
    Features - Upload a feature
    Project/Members - Grant permissions to collaborator

Request

PUT    /v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
Content-Type: application/json
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "geometry" : {
        "type" : "Point", 
        "coordinates" : [
            6.22568200000000, 
            1.26083400000000, 
            22.0000000000000, 
            9.87600000000000
        ]
    }, 
    "template_id" : "65ef007d697a365c4bad3b82", 
    "attributes" : {
        "T1 Field 1" : "F1 Upd Value 1", 
        "T1 Field 2" : "F1 Upd Value 2", 
        "T1 Field 3" : "F1 Upd Value 3"
    }
}

Response

{
    "feature" : {
        "id" : "65ef007d697a365c4bad3b84", 
        "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
        "template_id" : "65ef007d697a365c4bad3b82", 
        "geometry" : {
            "type" : "Point", 
            "coordinates" : [
                6.225682, 
                1.260834, 
                22.0, 
                0.0
            ]
        }, 
        "attributes" : {
            "T1 Field 1" : "F1 Upd Value 1", 
            "T1 Field 2" : "F1 Upd Value 2", 
            "T1 Field 3" : "F1 Upd Value 3"
        }, 
        "created_at" : "2024-03-11T13:00:45.350Z", 
        "updated_at" : "2024-03-11T13:08:55.665Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : "65ef007d697a365c4bad3b7a", 
        "deleted_by" : null
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84", 
    "status" : 200
}


Features - Number of features   

Returns the number of features.

See also:
    Features - Upload a feature
    Features - Retrieve the list of all features

Request

GET    /v1/templates/65ef007d697a365c4bad3b82/features/count/
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Response

{
    "number_of_features" : 3
}


Features - Retrieve the list of all features   

Retrieve the list of all features.

See also:
    Features - Upload a feature
    Features - Number of features

Request

GET    /v1/templates/65ef007d697a365c4bad3b82/features?page1?perPage=100
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Response

{
    "features" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/templates/65ef007d697a365c4bad3b82/features?page=1&perPage=500", 
                "self" : "/v1/templates/65ef007d697a365c4bad3b82/features", 
                "first" : "/v1/templates/65ef007d697a365c4bad3b82/features?page=1&perPage=500"
            }, 
            "pages" : 1, 
            "total_count" : 3, 
            "page" : 1, 
            "page_count" : 3, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b82/features?page=1&perPage=500", 
                "self" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b82/features", 
                "first" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b82/features?page=1&perPage=500"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007d697a365c4bad3b86", 
                "sequence_number" : "5F0DBB5D-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b82", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        51.312553, 
                        4.88304, 
                        22.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "T1 Field 1" : "F3 Value 1", 
                    "T1 Field 2" : "F3 Value 2", 
                    "T1 Field 3" : "F3 Value 3"
                }, 
                "created_at" : "2024-03-11T13:00:45.444Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007d697a365c4bad3b85", 
                "sequence_number" : "5F0DBB5C-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b82", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        51.312572, 
                        4.875058, 
                        22.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "T1 Field 1" : "F2 Value 1", 
                    "T1 Field 2" : "F2 Value 2", 
                    "T1 Field 3" : "F2 Value 3"
                }, 
                "created_at" : "2024-03-11T13:00:45.396Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007d697a365c4bad3b84", 
                "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b82", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.225682, 
                        1.260834, 
                        22.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "T1 Field 1" : "F1 Upd Value 1", 
                    "T1 Field 2" : "F1 Upd Value 2", 
                    "T1 Field 3" : "F1 Upd Value 3"
                }, 
                "created_at" : "2024-03-11T13:00:45.350Z", 
                "updated_at" : "2024-03-11T13:00:45.490Z", 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : "65ef007d697a365c4bad3b7a", 
                "deleted_by" : null
            }
        ]
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features", 
    "status" : 200
}


Features - Retrieve a feature   

Retrieve a feature.

See also:
    Features - Upload a feature

Request

GET    /v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Response

{
    "feature" : {
        "id" : "65ef007d697a365c4bad3b84", 
        "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
        "template_id" : "65ef007d697a365c4bad3b82", 
        "geometry" : {
            "type" : "Point", 
            "coordinates" : [
                6.225682, 
                1.260834, 
                22.0, 
                0.0
            ]
        }, 
        "attributes" : {
            "T1 Field 1" : "F1 Upd Value 1", 
            "T1 Field 2" : "F1 Upd Value 2", 
            "T1 Field 3" : "F1 Upd Value 3"
        }, 
        "created_at" : "2024-03-11T13:00:45.350Z", 
        "updated_at" : "2024-03-11T13:00:45.490Z", 
        "deleted_at" : null, 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : "65ef007d697a365c4bad3b7a", 
        "deleted_by" : null
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84", 
    "status" : 200
}


Features - Duplicate a feature   

One feature is duplicated in the same template where it is stored in.

See also:
    Features - Upload a feature

Request

POST    /v1/templates/65ef007d697a365c4bad3b82/feature/duplicate
Content-Type: application/json
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "feature_id" : "65ef007d697a365c4bad3b84"
}

Response

{
    "feature" : {
        "id" : "65ef007d697a365c4bad3b87", 
        "sequence_number" : "3c768b9b-264d-4e49-bd06-b56ed1f3f0db", 
        "template_id" : "65ef007d697a365c4bad3b82", 
        "geometry" : {
            "type" : "Point", 
            "coordinates" : [
                6.225682, 
                1.260834, 
                22.0, 
                0.0
            ]
        }, 
        "attributes" : {
            "T1 Field 1" : "F1 Upd Value 1", 
            "T1 Field 2" : "F1 Upd Value 2", 
            "T1 Field 3" : "F1 Upd Value 3"
        }, 
        "created_at" : "2024-03-11T13:11:46.442Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : null, 
        "deleted_by" : null
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/feature/duplicate", 
    "status" : 201
}


Features - Duplicate multiple features   

Multiple features or duplicated in the same template where they are stored in, or pasted in the template specified by the templateId in the url.
A collaborator must have write access to the given template.The parameter 'paste_features' must be true when the templateId in the url is different from the templateId of the features.

See also:
    Features - Upload a feature

Request

POST    /v1/templates/65ef007d697a365c4bad3b83/features/duplicate
Content-Type: application/json
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "feature_ids" : [
        "65ef007d697a365c4bad3b85", 
        "65ef007d697a365c4bad3b86"
    ], 
    "paste_features" : true
}

Response

{
    "features" : [
        {
            "id" : "65ef007d697a365c4bad3b88", 
            "sequence_number" : "b925b3ae-a19d-4a19-92b5-be108b80badd", 
            "template_id" : "65ef007d697a365c4bad3b83", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    51.312572, 
                    4.875058, 
                    22.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "T1 Field 1" : "F2 Value 1", 
                "T1 Field 2" : "F2 Value 2", 
                "T1 Field 3" : "F2 Value 3"
            }, 
            "created_at" : "2024-03-11T13:12:37.903Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }, 
        {
            "id" : "65ef007d697a365c4bad3b89", 
            "sequence_number" : "332753fa-4cd5-497c-aa33-c9f89d42876c", 
            "template_id" : "65ef007d697a365c4bad3b83", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    51.312553, 
                    4.88304, 
                    22.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "T1 Field 1" : "F3 Value 1", 
                "T1 Field 2" : "F3 Value 2", 
                "T1 Field 3" : "F3 Value 3"
            }, 
            "created_at" : "2024-03-11T13:12:42.239Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }
    ], 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b83/features/duplicate", 
    "status" : 201
}


Features - Delete a feature   

Delete a feature. If the user requesting the delete is a collaborator, and is not the owner of the project, he must be:
    1. Member of the project and
    2. Have the permission to delete features.

See also:
    Features - Upload a feature
    Project/Members - Add a user to a project.
    Project/Members - Grant permissions to collaborator

Request

DELETE    /v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Response

{
    "feature" : {
        "id" : "65ef007d697a365c4bad3b84", 
        "sequence_number" : "5F0DBB5B-DFA7-11EE-B775-BC9A78563412", 
        "template_id" : "65ef007d697a365c4bad3b82", 
        "geometry" : {
            "type" : "Point", 
            "coordinates" : [
                6.225682, 
                1.260834, 
                22.0, 
                0.0
            ]
        }, 
        "attributes" : {
            "T1 Field 1" : "F1 Upd Value 1", 
            "T1 Field 2" : "F1 Upd Value 2", 
            "T1 Field 3" : "F1 Upd Value 3"
        }, 
        "created_at" : "2024-03-11T13:00:45.350Z", 
        "updated_at" : "2024-03-11T13:00:45.490Z", 
        "deleted_at" : "2024-03-11T13:00:45.753851Z", 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : "65ef007d697a365c4bad3b7a", 
        "deleted_by" : "65ef007d697a365c4bad3b7a"
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features/65ef007d697a365c4bad3b84", 
    "status" : 200
}


Features - Delete a set of features   

Delete a set of features. The Ids of features to be deleted are listed in the Request Body.
If the user requesting the delete is a collaborator, and is not the owner of the project, he must be:
    1. Member of the project and
    2. Have the permission to delete features.

See also:
    Features - Upload a feature
    Project/Members - Add a user to a project.
    Project/Members - Grant permissions to collaborator

Request

DELETE    /v1/templates/65ef007d697a365c4bad3b82/features
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
Content-Type: application/json
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "ids" : [
        "65ef007d697a365c4bad3b85", 
        "65ef007d697a365c4bad3b86"
    ]
}

Response

{
    "features" : {
        "metadata" : {
            "uris" : {
            }, 
            "pages" : 0, 
            "total_count" : 0, 
            "page" : 0, 
            "page_count" : 0, 
            "absolute_uris" : {
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007d697a365c4bad3b85", 
                "sequence_number" : "5F0DBB5C-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b82", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        51.312572, 
                        4.875058, 
                        22.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "T1 Field 1" : "F2 Value 1", 
                    "T1 Field 2" : "F2 Value 2", 
                    "T1 Field 3" : "F2 Value 3"
                }, 
                "created_at" : "2024-03-11T13:00:45.396Z", 
                "updated_at" : null, 
                "deleted_at" : "2024-03-11T13:00:45.802154Z", 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : "65ef007d697a365c4bad3b7a"
            }, 
            {
                "id" : "65ef007d697a365c4bad3b86", 
                "sequence_number" : "5F0DBB5D-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b82", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        51.312553, 
                        4.88304, 
                        22.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "T1 Field 1" : "F3 Value 1", 
                    "T1 Field 2" : "F3 Value 2", 
                    "T1 Field 3" : "F3 Value 3"
                }, 
                "created_at" : "2024-03-11T13:00:45.444Z", 
                "updated_at" : null, 
                "deleted_at" : "2024-03-11T13:00:45.804448Z", 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : "65ef007d697a365c4bad3b7a"
            }
        ]
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b82/features", 
    "status" : 200
}

Search the given text in all string fields in the features of a given template. The template body contains the text to be searched for (not JSON).

See also:
    Features - Search extensive
    Features - Search text in all projects/templates

Request

POST    /v1/templates/65ef007d697a365c4bad3b8a/features/textsearch
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81
Content-Type: text/plain; charset=utf-8

Search Value

R&D

Response

{
    "features" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch?page=1&perPage=500", 
                "self" : "/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch", 
                "first" : "/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch?page=1&perPage=500"
            }, 
            "pages" : 1, 
            "total_count" : 4, 
            "page" : 1, 
            "page_count" : 4, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch?page=1&perPage=500", 
                "self" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch", 
                "first" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch?page=1&perPage=500"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007e697a365c4bad3b8f", 
                "sequence_number" : "5F0DBB62-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Michel", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:46.115Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007e697a365c4bad3b8e", 
                "sequence_number" : "5F0DBB61-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Boris", 
                    "Function" : "Testing & Deployment", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:46.068Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007e697a365c4bad3b8d", 
                "sequence_number" : "5F0DBB60-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Ishak", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:46.021Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007d697a365c4bad3b8c", 
                "sequence_number" : "5F0DBB5F-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Matthias", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:45.975Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }
        ]
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b8a/features/textsearch", 
    "status" : 200
}

Search the given text in all string fields in the features of all templates of all projects the user has access to. The template body contains the text to be searched for (not JSON).

See also:
    Features - Search extensive

Request

POST    /v1/globalsearch/features
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
Content-Type: text/plain; charset=utf-8

Search Value

R&D

Response

{
    "features" : [
        {
            "id" : "65ef007e697a365c4bad3b93", 
            "sequence_number" : "5F0DBB64-DFA7-11EE-B775-BC9A78563412", 
            "template_id" : "65ef007e697a365c4bad3b91", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    6.168548, 
                    1.234305, 
                    0.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "Name" : "Sergey", 
                "Function" : "Developer", 
                "Department" : "R&D"
            }, 
            "created_at" : "2024-03-11T13:00:46.382Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }, 
        {
            "id" : "65ef007e697a365c4bad3b8f", 
            "sequence_number" : "5F0DBB62-DFA7-11EE-B775-BC9A78563412", 
            "template_id" : "65ef007d697a365c4bad3b8a", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    6.168548, 
                    1.234305, 
                    0.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "Name" : "Michel", 
                "Function" : "Developer", 
                "Department" : "R&D"
            }, 
            "created_at" : "2024-03-11T13:00:46.115Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }, 
        {
            "id" : "65ef007e697a365c4bad3b8e", 
            "sequence_number" : "5F0DBB61-DFA7-11EE-B775-BC9A78563412", 
            "template_id" : "65ef007d697a365c4bad3b8a", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    6.168548, 
                    1.234305, 
                    0.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "Name" : "Boris", 
                "Function" : "Testing & Deployment", 
                "Department" : "R&D"
            }, 
            "created_at" : "2024-03-11T13:00:46.068Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }, 
        {
            "id" : "65ef007e697a365c4bad3b8d", 
            "sequence_number" : "5F0DBB60-DFA7-11EE-B775-BC9A78563412", 
            "template_id" : "65ef007d697a365c4bad3b8a", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    6.168548, 
                    1.234305, 
                    0.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "Name" : "Ishak", 
                "Function" : "Developer", 
                "Department" : "R&D"
            }, 
            "created_at" : "2024-03-11T13:00:46.021Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }, 
        {
            "id" : "65ef007d697a365c4bad3b8c", 
            "sequence_number" : "5F0DBB5F-DFA7-11EE-B775-BC9A78563412", 
            "template_id" : "65ef007d697a365c4bad3b8a", 
            "geometry" : {
                "type" : "Point", 
                "coordinates" : [
                    6.168548, 
                    1.234305, 
                    0.0, 
                    0.0
                ]
            }, 
            "attributes" : {
                "Name" : "Matthias", 
                "Function" : "Developer", 
                "Department" : "R&D"
            }, 
            "created_at" : "2024-03-11T13:00:45.975Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null
        }
    ], 
    "projects" : [
        {
            "id" : "65ef007e697a365c4bad3b90", 
            "name" : "My Organisation", 
            "description" : "Data about organisation", 
            "image_file_url" : null, 
            "template_ids" : [
                "65ef007e697a365c4bad3b91"
            ], 
            "created_at" : "2024-03-11T13:00:46.252Z", 
            "updated_at" : "2024-03-11T13:00:46.288Z", 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : "65ef007d697a365c4bad3b7a", 
            "deleted_by" : null, 
            "customer_id" : "65ef007d697a365c4bad3b7c", 
            "project_class" : "project", 
            "visibility" : "private", 
            "archived" : false
        }, 
        {
            "id" : "65ef007d697a365c4bad3b81", 
            "name" : "Test Project", 
            "description" : "Description of Test Project", 
            "image_file_url" : null, 
            "template_ids" : [
                "65ef007d697a365c4bad3b82", 
                "65ef007d697a365c4bad3b83", 
                "65ef007d697a365c4bad3b8a"
            ], 
            "created_at" : "2024-03-11T13:00:45.222Z", 
            "updated_at" : "2024-03-11T13:00:45.849Z", 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : "65ef007d697a365c4bad3b7a", 
            "deleted_by" : null, 
            "customer_id" : "65ef007d697a365c4bad3b7c", 
            "project_class" : "project", 
            "visibility" : "private", 
            "archived" : false
        }
    ], 
    "templates" : [
        {
            "id" : "65ef007e697a365c4bad3b91", 
            "project_id" : "65ef007e697a365c4bad3b90", 
            "name" : "Staff Development", 
            "description" : "List of employees", 
            "image_file_url" : null, 
            "feature" : {
                "geometry_type" : "Point", 
                "attributes" : [
                    {
                        "_class" : "attribute", 
                        "name" : "Name", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }, 
                    {
                        "_class" : "attribute", 
                        "name" : "Function", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }, 
                    {
                        "_class" : "attribute", 
                        "name" : "Department", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }
                ]
            }, 
            "form" : {
                "fields" : [
                    {
                        "_class" : "stringfield", 
                        "name" : "Name", 
                        "label" : "Name", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }, 
                    {
                        "_class" : "stringfield", 
                        "name" : "Function", 
                        "label" : "Function", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }, 
                    {
                        "_class" : "stringfield", 
                        "name" : "Department", 
                        "label" : "Department", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }
                ]
            }, 
            "map_style" : null, 
            "template" : false, 
            "created_at" : "2024-03-11T13:00:46.287Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null, 
            "visibility" : "private", 
            "is_template" : false, 
            "default_style_id" : null
        }, 
        {
            "id" : "65ef007d697a365c4bad3b8a", 
            "project_id" : "65ef007d697a365c4bad3b81", 
            "name" : "Staff", 
            "description" : "List of employees", 
            "image_file_url" : null, 
            "feature" : {
                "geometry_type" : "Point", 
                "attributes" : [
                    {
                        "_class" : "attribute", 
                        "name" : "Name", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }, 
                    {
                        "_class" : "attribute", 
                        "name" : "Function", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }, 
                    {
                        "_class" : "attribute", 
                        "name" : "Department", 
                        "type" : "string", 
                        "default_value" : null, 
                        "restrictions" : [
                        ]
                    }
                ]
            }, 
            "form" : {
                "fields" : [
                    {
                        "_class" : "stringfield", 
                        "name" : "Name", 
                        "label" : "Name", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }, 
                    {
                        "_class" : "stringfield", 
                        "name" : "Function", 
                        "label" : "Function", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }, 
                    {
                        "_class" : "stringfield", 
                        "name" : "Department", 
                        "label" : "Department", 
                        "description" : "0", 
                        "enabled" : false, 
                        "visible" : false, 
                        "required" : true, 
                        "use_previous_value" : false, 
                        "event_actions" : null, 
                        "default_value_expression" : null, 
                        "constraints" : [
                        ], 
                        "default_value" : null
                    }
                ]
            }, 
            "map_style" : null, 
            "template" : false, 
            "created_at" : "2024-03-11T13:00:45.848Z", 
            "updated_at" : null, 
            "deleted_at" : null, 
            "created_by" : "65ef007d697a365c4bad3b7a", 
            "updated_by" : null, 
            "deleted_by" : null, 
            "visibility" : "private", 
            "is_template" : false, 
            "default_style_id" : null
        }
    ]
}

Extensive search in all the features of a template. The query is in the Request Body in JSON format. When the request body contains multiple name, value pairs, all those conditions must be met.The query may contain operators to specify if values should be equal, greater than, less than, etc. The use of those operators will be documented later.

See also:
    Features - Search text

Request

POST    /v1/templates/65ef007d697a365c4bad3b8a/features/search
Content-Type: application/json
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663
X-Working-Project-Id: 65ef007d697a365c4bad3b81

Request Body

{
    "Function" : "Developer", 
    "Department" : "R&D"
}

Response

{
    "features" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/templates/65ef007d697a365c4bad3b8a/features/search?page=1&perPage=500", 
                "self" : "/v1/templates/65ef007d697a365c4bad3b8a/features/search", 
                "first" : "/v1/templates/65ef007d697a365c4bad3b8a/features/search?page=1&perPage=500"
            }, 
            "pages" : 1, 
            "total_count" : 3, 
            "page" : 1, 
            "page_count" : 3, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/search?page=1&perPage=500", 
                "self" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/search", 
                "first" : "https://api.mycumulus.com/v1/templates/65ef007d697a365c4bad3b8a/features/search?page=1&perPage=500"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef007e697a365c4bad3b8f", 
                "sequence_number" : "5F0DBB62-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Michel", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:46.115Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007e697a365c4bad3b8d", 
                "sequence_number" : "5F0DBB60-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Ishak", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:46.021Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }, 
            {
                "id" : "65ef007d697a365c4bad3b8c", 
                "sequence_number" : "5F0DBB5F-DFA7-11EE-B775-BC9A78563412", 
                "template_id" : "65ef007d697a365c4bad3b8a", 
                "geometry" : {
                    "type" : "Point", 
                    "coordinates" : [
                        6.168548, 
                        1.234305, 
                        0.0, 
                        0.0
                    ]
                }, 
                "attributes" : {
                    "Name" : "Matthias", 
                    "Function" : "Developer", 
                    "Department" : "R&D"
                }, 
                "created_at" : "2024-03-11T13:00:45.975Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef007d697a365c4bad3b7a", 
                "updated_by" : null, 
                "deleted_by" : null
            }
        ]
    }, 
    "uri" : "/v1/templates/65ef007d697a365c4bad3b8a/features/search", 
    "status" : 200
}


Features - Import CSV   

Imports features in an existing or in a new template. The request body contains the data, in CSV format, Base64 encoded.The template is specified by it's name. If the template does not exist yet, a new template with that name is generated.In that case, the request body must contain for each field (1) the type, (2) the name and (3) the label. When the CSV contains the coordinates of a point, the CRS of the coordinates must be given and in the array "coordinate_columns" the columns (starting from 1) of the coordinates. For a 2D point, the array will contain 2 elements.

Request

POST    /v1/imports/data
Content-Type: application/json
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663

Request Body

{
    "template" : {
        "name" : "Points", 
        "description" : "Form created by import", 
        "project_id" : "65ef007d697a365c4bad3b81"
    }, 
    "data" : {
        "base64_encoded_content" : "77u/UG9pbnROciwgWCwgWSwgWiwgQ29kZQ0KMTAwMCwgNTEuNzc0NjEyODcsNC42NDcwODUwOSw0OC4wMCxQb2ludDENCjEwMDEsIDUxLjc3NSw0LjY0Niw0OS4wMCxQb2ludCAyDQo=", 
        "encoding" : "UTF8", 
        "type" : "CSV", 
        "data_separator" : ",", 
        "decimal_separator" : ".", 
        "geometry" : "Point", 
        "coordinate_columns" : [
            2, 
            3, 
            4
        ], 
        "crs" : "Geodetic", 
        "fields" : [
            {
                "_class" : "stringfield", 
                "name" : "PointNr", 
                "label" : "Point Number"
            }, 
            {
                "_class" : "stringfield", 
                "name" : "Code", 
                "label" : "Code"
            }
        ]
    }
}

Response

{
    "template" : {
        "id" : "65ef007e697a365c4bad3b94", 
        "project_id" : "65ef007d697a365c4bad3b81", 
        "name" : "Points", 
        "description" : "Form created by import", 
        "image_file_url" : "", 
        "feature" : {
            "geometry_type" : "Point", 
            "attributes" : [
                {
                    "_class" : "attribute", 
                    "name" : "PointNr", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }, 
                {
                    "_class" : "attribute", 
                    "name" : "Code", 
                    "type" : "string", 
                    "default_value" : null, 
                    "restrictions" : [
                    ]
                }
            ]
        }, 
        "form" : {
            "fields" : [
                {
                    "_class" : "stringfield", 
                    "name" : "PointNr", 
                    "label" : "Point Number", 
                    "description" : null, 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : ""
                }, 
                {
                    "_class" : "stringfield", 
                    "name" : "Code", 
                    "label" : "Code", 
                    "description" : null, 
                    "enabled" : true, 
                    "visible" : true, 
                    "required" : false, 
                    "use_previous_value" : false, 
                    "event_actions" : null, 
                    "default_value_expression" : null, 
                    "constraints" : [
                    ], 
                    "default_value" : ""
                }
            ]
        }, 
        "map_style" : null, 
        "template" : false, 
        "created_at" : "2024-03-11T13:00:46.570899Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef007d697a365c4bad3b7a", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "visibility" : "private", 
        "is_template" : false, 
        "default_style_id" : null
    }, 
    "features" : [
        "2 features inserted successfully"
    ], 
    "uri" : "/v1/imports/data", 
    "status" : 201
}


Features - Import IMKL   

Imports an IMKL (B and NL) file. The request body contains the XML or ZIP-file, Base64 encoded.In the given project, new templates are created based on the Project Template specified by project_template_id.For more information consult the IMKL documentation.

Request

POST    /v1/imports/imkl
Content-Type: application/json
X-Auth-Token: a4c4c2fe55d084ee8371c9aa44bffa8e7a2edcbbe82c1fd5fcea7fd1f377ed233c7895e2bb2754681b54b6b6bd4caebd2fa4c3968a9d905ba9d750ac444cd545c58ac0d385d3b6a03d35b1c13cf521199da8577851a926b34913bb66989875de194acd62cdf035ded6d58d3a49ab5465daa2a994eeccdfa6d4b53a663

Request Body

{
    "project_id" : "65ef007d697a365c4bad3b81", 
    "model" : "imkl_nl", 
    "base64_encoded_content" : "Base64Data", 
    "encoding" : "UTF8", 
    "type" : "xml"
}

Response

{
    "error" : {
        "code" : 78, 
        "message" : "invalid 'base64' string."
    }, 
    "uri" : "/v1/imports/imkl", 
    "status" : 400
}


--- Public API functions: Report Templates ---


Report Templates - Create a report template (no document included)   

Creates a new report template. A report template can be either used by all users in the organisation and with any form (visibleTo = all_users), or the report template is linked with one or more forms (visibleTo = some_forms).This is the first step to create a customized report template. Afterwards the html files defining the layout of the report must still be uploaded.


See also:
    Report Templates - Update the report template (no document included)
    Report Templates - Create a form template (including document)Report Templates - Delete a report template
    Report Templates - Retrieve the list of all report templates
    Report Templates - Retrieve a report template

Request

POST    /v1/reporttemplates?visibleTo=all_users
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6
Content-Type: application/json

Request Body

{
    "name" : "My Report Template", 
    "place_holders" : [
        {
            "User Name" : "Fons"
        }, 
        {
            "Date" : null
        }
    ], 
    "orientation" : "portrait", 
    "default_page_size" : "A4"
}

Response

{
    "report_template" : {
        "id" : "65ef0081697a365c4bad3b9f", 
        "name" : "My Report Template", 
        "place_holders" : [
            {
                "User Name" : "Fons"
            }, 
            {
                "Date" : null
            }
        ], 
        "fields" : [
        ], 
        "orientation" : "portrait", 
        "default_page_size" : "A4", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/index.html", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/My Report Template", 
        "created_at" : "2024-03-11T13:00:49.284662Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "file_name" : null, 
        "description" : ""
    }, 
    "uri" : "/v1/reporttemplates", 
    "status" : 201
}


Report Templates - Create a form template (including document)   

Creates a new report template. The document, an Excel, Word or a PDF document is included in the request body.The document will contain place holders. The syntax used for placeholders within report template documents follows a JSON-like structure.
Details on this syntax are beyond the scope of this API documentation. Users are advised to consult the specific documentation on placeholder syntax or contact support for guidance on how to properly format placeholders in their report templates.

See also:
    Report Templates - Update the form template (including document)
    Report Templates - Create a report template (no document included)
    Report Templates - Delete a report template
    Report Templates - Retrieve the list of all report templates
    Report Templates - Retrieve a report template

Request

POST    /v1/reports2/create_report_template_base64/XLSX/all_users
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Search Value

UEsDBBQABgAIAAAAIQBP9eXkhAEAALcFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACslMtuwyAQRfeV+g8W28om6aKqqjhZ9LFsIzX9AGrGNop5iCGvvy8QJ0orN1bkbIwNM/cexgyT2VY2yRosCq1yMs5GJAFVaC5UlZOvxVv6SBJ0THHWaAU52QGS2fT2ZrLYGcDEZyvMSe2ceaIUixokw0wbUH6l1FYy5z9tRQ0rlqwCej8aPdBCKwfKpS5okOnkBUq2alzyuvXTexKjKpI87+OCVU6EDPlhnnZmWGjwTwozphEFc35vdK34H660Zcp8ZozBWhi88+D/OISV30ynBm3ehy+mFRySObPunUlPTrcN3Wi7/NZ6mZ0X6aDUZSkK4LpYSV+zDI0FxrEGcLLJ4phJJtSB+4x/DEYah/GVQcL+onAPh/MnBGh8DkeIMj2G6HYN4LXLHkX7nGtmgX8663vp6gCn2j0c3LJNQKDty/C6t0LnfP15nVtt0Pe6hcurf2jNkJ0aLwTWCTg2Z9chPzr6phz8uyHcRBz4pd7FCp2Wg+33Mh3mNF670x8AAAD//wMAUEsDBBQABgAIAAAAIQATXr5lAgEAAN8CAAALAAgCX3JlbHMvLnJlbHMgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJJNSwMxEIbvgv8hzL072yoi0mwvRehNZP0BMZn9YDeZkKS6/fdGQXShth56nK93nnmZ9Wayo3ijEHt2EpZFCYKcZtO7VsJL/bi4BxGTckaN7EjCgSJsquur9TONKuWh2PU+iqziooQuJf+AGHVHVsWCPblcaThYlXIYWvRKD6olXJXlHYbfGlDNNMXOSAg7cwOiPvi8+bw2N02vact6b8mlIyuQpkTOkFn4kNlC6vM1olahpSTBsH7K6YjK+yJjAx4nWv2f6O9r0VJSRiWFmgOd5vnsOAW0vKRFcxN/3JlGfOcwvDIPp1huL8mi9zGxPWPOV883Es7esvoAAAD//wMAUEsDBBQABgAIAAAAIQCBPpSX8wAAALoCAAAaAAgBeGwvX3JlbHMvd29ya2Jvb2sueG1sLnJlbHMgogQBKKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACsUk1LxDAQvQv+hzB3m3YVEdl0LyLsVesPCMm0KdsmITN+9N8bKrpdWNZLLwNvhnnvzcd29zUO4gMT9cErqIoSBHoTbO87BW/N880DCGLtrR6CRwUTEuzq66vtCw6acxO5PpLILJ4UOOb4KCUZh6OmIkT0udKGNGrOMHUyanPQHcpNWd7LtOSA+oRT7K2CtLe3IJopZuX/uUPb9gafgnkf0fMZCUk8DXkA0ejUISv4wUX2CPK8/GZNec5rwaP6DOUcq0seqjU9fIZ0IIfIRx9/KZJz5aKZu1Xv4XRC+8opv9vyLMv072bkycfV3wAAAP//AwBQSwMEFAAGAAgAAAAhAKCeTPcvAwAAIwgAAA8AAAB4bC93b3JrYm9vay54bWykVVFvmzoUfr/S/Q/I79SYAE1Q6RRC0K3UTFWWtXdPlQOmWDWYa0yTatp/3zEJ6bJMV1mHEhv7HD5/55zP9tWHbSWsF6ZaLusIkQsHWazOZM7rpwh9XqX2GFmtpnVOhaxZhF5Ziz5c//3X1Uaq57WUzxYA1G2ESq2bEOM2K1lF2wvZsBoshVQV1TBUT7htFKN5WzKmK4FdxwlwRXmNdgihOgdDFgXPWCKzrmK13oEoJqgG+m3Jm3ZAq7Jz4CqqnrvGzmTVAMSaC65fe1BkVVl481RLRdcCwt4S39oq+AXwJw407rASmE6WqnimZCsLfQHQeEf6JH7iYEKOUrA9zcF5SB5W7IWbGh5YqeCdrIIDVvAGRpw/RiMgrV4rISTvnWj+gZuLrq8KLtj9TroWbZqPtDKVEsgStNXznGuWR+gShnLDjiZU18QdF2AlxAVe+Pog5ztl5aygndArEPIAD45BMHF94wnCmArNVE01m8lagw73cf2p5nrsWSlB4daS/ddxxWBjgb4gVmhpFtJ1e0d1aXVKRAh/biF4XIDyc7aRosCJ3NRCwh7DP4iTnu6E35AnzUzMGILeEdu9/5wA4KfCQYJ3WlnwfpPcQhk+0RcoCpQ+3+/ZG5P10WOdqZA8fk3H8cQn/tQOZp5nB753aY9JMrVTP5nEI9+fx4n7DYJRQZhJ2ulyX28DHSEPintiWtDtYCFO2PH8jcZXZ//Ypv+pGWzfTMDmZLvnbNO+KcMMre0Dr3O56SN6Hd59B+Lb9IYHnusyQiN/7B3m/mH8qQS2LpkYR03XS3NegZdrDhHlGpIROiKX7Mil8NimOSKHf2DXH6fAsu+tut8CC0gOnNrmoO2zjSwVmhXUTU76ag4fZVRkIHjT9Y4T4rgT48G2+rbVfQ9a40Au9sexM5q4tpeS1PYgFDuOA8/2k3TkX5JkNvdTUyhzGYRbg1i8c4+Pcf81o7oD/Rvp9+PQtOl+9jBZ7Cb2gR/pOlwmJpT91//n+AkuO8HOdE7vz3ScfVysFmf63s5Xjw/puc7TRZxMz/efLpfTL6v5v8MS+JcJxVBz2NxD5fFwv19/BwAA//8DAFBLAwQUAAYACAAAACEA59vru8UEAAD7DwAAFAAAAHhsL3NoYXJlZFN0cmluZ3MueG1svFdtU9tGEP7ODP/h5j4HTGhJG8aYoYGSNBgyhZCZdhjNWVpLF0t36t3JhGT4731OspFiya7NTMMXI92+3e4+z676x1+ylE3JWKnVEX+5u8cZqVBHUsVH/OPN7zu/cmadUJFItaIj/kCWHw+2t/rWOgZdZY944lx+2OvZMKFM2F2dk8LJWJtMODyauGdzQyKyCZHL0t7+3t6rXiak4izUhXJH/Jd9zgol/ynozezFHh/0rRz03eCGwkRJb5zFFNOUlGVCKJsW0iFKdgV3I2HI3yKVYeJf9ntu0O95/crGyUyeeTPOdhxPjRDx3P7i+RthSRVZRmaZJoNTmhZpxCKtW1KnwhXZk8iijatbRjImJcQS83Hb70fpppoMqYh8MhR1xHahQ+EkUlYlbdHtjXZCpF7b4QeFc6QWZa7LdLGpTuPu+38w+jOFDrFnLV2HlLrFt5+0VnmKg1YROuq8qHwJNyzTylGxJMe4TUqt8l+jJo7dk5m0LJZVZTpnSKTPwaLAW63H0USMKHUPOS2eXlz3UL3YaMrt0gYpO/Vefv7a7QE5FhNKO7p2SKgMKbQ9apPiBx0SHS/r7VGqW9c7p5Ep5MRGmtJlehPc2mNnKtDCqmXet0lKDHHEziOwaBm6FYolT2livo/LVDI99nZHUnk2sZket1oQKUU9u9/PMV4mv5X4KpyVMu/gF9nDvZhDgYS1ni784/dR1RF3xrf6CrdkMgLsE0lGA43GN9Jv7/746+ry9OzPt2enZ5ely4hQ/gZtHS76+sb4WMISP2Tc802gDGePLalayINhWGGBr5Ibor5Vb3aJ5RWAvVclMlpp6bpEtMf6SrGrHGQ0Qa474q+QiJKzHRSFCTSKVAzNT72x0RmjL9J2ETiyA9YIKUh0iiT7cJHMkrSDOfUGnnq7ctbWjTwhPymup6OnwZym11OoAgR5ryeOcTan9GBO6etpupLJvRKgGlRM3q351GEVsd9iAq9qnbJan1DMlfW+AYpP3vMXjIdAAIayVqhPs59LO0M99jKY+ofsb8ZPxk5M0Aj+3Rkowv/L7tjjyoAuStj/IGfPuxcIocF4y67UAHs9EbuKsb3FkLNMxORz6p/wHBlxj64PcmGAWYftrT7E8UiEE8ykQpVkkomcv6gUvzsLQp0CLyjG/JCx/YODJ1HG9pb8/+rnucZdbVgXLi9cUG19Hp8fLs8bfiPgWigAOCNhC4N9RbkAK5/zomHWkMQqJzqlmkL3MnIJVF++riNIAM/E29s/2K2vwQ1ZnRa+K4Molzh+/arWyYSJpQpSGnvFn3brK/PZkdO599NxYmbuus5G2jmdLSpilDgZAqMilbHyKShvj1+QROMi2sivYPb/FLSwRcFYhK4spCrStKrM48wYz43MgMgptvZGoSuhO//zuL21igHK9ef9jQepzn0ORQpDzhS0GqfXwdXtpkrzJb1clfzU2tRAvUlxtmHA5+Vu9dyI/eq1qW5zNXuuX7+6rakbkwZTmAffcOUulwTAEyajoVD6jz+Pm66ksdZi/63eQZrEvkl/eGqdzYMFtR8xRRreN5lYLWb/f2bVegOkrkH5cQns4LvHFxSrDSih/PbmhzyKdobDnQf8NUd4Dx/vg38BAAD//wMAUEsDBBQABgAIAAAAIQDbvHbsCgIAAOcDAAAYAAAAeGwvZHJhd2luZ3MvZHJhd2luZzEueG1snFPJbtswEL0X6D8QvMtaYju2YCmIFxUBgtSH9gMYirKIiqRA0ksQ5N87JCW7y6WoDtTjcPg0781o9XARHToxbbiSBU4nCUZMUlVzeSjw929VtMDIWCJr0inJCvzGDH4oP39aXWqdn81WIyCQJodtgVtr+zyODW2ZIGaieibhtFFaEAtbfYhrTc5ALbo4S5J5bHrNSG1axuw2nOCBj/wHmyBc4tJXBrVuWNc9StoqHUKNViIgqroyzVaxk+CwvwHga9OUyTXsdv5Eq3OZhrCDY+yXbAj7bM94+w67WEQvBV4u0uR+hhF9K3C2nGWA40DTcxqAPO053Q+V0pfTXiNeQzZGkgiwHU7tUTOUgj6SA/GzsQNCR80L/F5V2Xq2q6ZRBSiaJutptN5Nl1GV3S122X21ye7mH+52Os8puG6h4U/16HY6/8tvwalWRjV2QpWIVdNwysb+QffSaez99nW+J8MTwXvhluS2JNBq93w41bGvfnx7FaEPTvPQCYDBDJKDQc+K/jBIqk1L5IE9mp5RC5PqyXwHr+me6DcnXzveV7yDFpPc4UHuP41qULxV9CiYtGFeNeu8cablvcFI50y8MuiTfqp9QSQ3VjNLW6fUFXcrwO1M7zSCKm3sF6YEcgBugyLfV3ICQ4JJY8rAE256yuvM0I5DYVtiyfi1P6bep7t/tPwJAAD//wMAUEsDBAoAAAAAAAAAIQAzNdaiDA8AAAwPAAATAAAAeGwvbWVkaWEvaW1hZ2UxLnBuZ4lQTkcNChoKAAAADUlIRFIAAABnAAAAHwgGAAAA+jDTVQAAAAFzUkdCAK7OHOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAOoUlEQVRoQ+1aeXBV1Rnnj9aFTUUiUQIkiNpaxzoqRWhFguxYlMWyZmeRDjggOy7VoZbdrVJGBERQGLDZCVt2sicvL/vykhAiASQsoYBhyfbr9/vuuy+PGEhapp3ONL+ZL+e+c89y7/c733LOTQfcBvX20rhqcFzxsk7+1PFXvUgt8MPGo4jo8yauplRpq0be0y5sVS9/Ce3djjagsbGx+rbkoIFKbmhRpUadqPwSkDlpO5L7+iLbfRqs/WbjzNY06dco94UdR+cb9rIdbUHr5PyEFsMiWEtprKpH4q/fRXpff2R7+CLPwwd57v5IeswfJb67HXyQJvaox3W9akfraJUcQ6kmSMd1NDQaCr4SexKJTy8VQgJQ6OGFfI8ZSk6RWFCeuzcyHvVDwuhl0q1c29P1iSG2o41olRwjThi0NDQ0qNUQpRtikP30m7D09lJCCjz8kaulF3JIEC1I6o70HoyMzCG4cC1UZjNcZDvaBiVHCVCdKQW8UFLMgF7PKlOn/wAKfXfC8uQc5PXxRb64szwlhC7NT4nK9/BWoor6+iGqzwDEpHfHkdJ+KLv4Jxnzmgximo9ZEs7X7SCUnEZRPN1XvdOqVncmP5lnmdZSW3gFaYP/guxHZwoxtBhvsZQAIcNfxE9E3FvfmUKMn9QbEu0+ENGWB3CgsBMOlPRE7ikvGalKrFAKHdac03iCdjTB7tYYqOmymoP5lqGws3tzYXlxBSy9SISvWIq3kmN1mY6MblNh7f66yGSkdZuG9G6TkCp1lu5TEebyPA5luyCkpDNCbSSoG46Wj8OPtUftvDQtiHbcDDs5JMGZGiFE4oPddGBbGQ5L/0WwuHkrMZRCcVspvcYh5bNfIvpLD0Rv64sokeht7ojZKqVIjFwf2NkDBwu6IqLoPuwv7iwkdURoUVfEVQzAqUvbZA6ZwMFP24iq576qDWipXVv63q4N77V1fuJfadscSs7N3WlBdUpV7flaFP9hKzKemI3c3owltBpajI+4Lz8cdRuDxLQeovjO2F/URSyjC8JKOuFwoVyLpdCVRUgZJvdDi+WeTcixdRW5ByHFHXGk/AnYqt6TmS5wfbQJTEruBPLCtx2jLeNzjP8GlBy1G/t8pnO7GFcBy4Q1sD4iWVifGWIpDPaMIySJwd8fCW4jEJ/hIqSQHCFAiAgpFTKkDC7pinCpD2edWEywrSPCpQwXEsMoci+4+F4cKO0Fa+Vs1DWU6bytgYo5c+YMvvrqK+zYseMnsn37dvz444/aNjAwUOv27t2rv02Yyi0vL3f0Ky0t1bq6ujrHOOY9UzhnSUmJErh582Z8/fXXWtfcOk6fPu14vq1bt2pddXW1Y8z9+/drnYnioiJt//nnn2PTpk3aJjk5meMaMYcLxiSmYnMycoa/j3TXKUKEQYZBiFEa17SckYjN6YGw450QWtEJ4cc6ynVHBFeI6/q+k16HnOgkliKESbyJKKRbE4LEikgUCQoVNxdS0A1pla/iQk2Yzm8sXv5peYXm5eVhwoQJmDhxIsaMGYMRI0Y45OWXX1byiLlz52qbyZMn64s7r3gqOCEhQe9T4uLitL62thbjx4/X8V977bWbxh4+fDgOHjyo4+zbtw+jRo3SduvWrtW+xNWrV7Fy5UqtHzN6NOLj47W+oqJCx+Ncy5bJ3s8OLpz58+bpnC+99JIK51q+fDmfsbpDrV0JDVcaYVsRivRnFiOr53Qlw5mQ5pLg9iqSvngUkd88iMO7JV3+xgWHKLtd5HcPHJbr8AP3i6UIeUKKWheJUoK6IsxOUIhYVUjhvTh6vD8qz++SJ7nEp9FnMmDutgxkZWVhtLw4iVm3bh12796Nb7/91lFeusT+gK+vr7Zh27Fjx2LDhg24cEFcqIAKjo2N1fuUqKgorb9x4wZGjhypdT4+Pjrmnj17VHhdVmZY+JUrV/DZZ59h6NChGCttv/jiC1y/fh1r1qxR0oYMGaLPYi6I48ePO8ZdsGCB1hFTZOGQdC8vL4SGhiIkJAQ7d+5EWFgY+1Z3oBpqSi4h/487JMjPQU6v6eLGJE2WtLglUkzJ6jMd1sGjkeo5DOlDRyLFcxRSho6GZehwpHuOQIbIodFPITL7frUYkkMhIWH2GGRci0isCim6W/ZDT8F29h1ZLieNp9eFc/ORT3Z2tiqbYrVa7bVNMOOGv78/XnnlFRVPT09VwgcffIBjx47pfZJj3o+OjtY6kkMyWbd06VKtuxUuXryIFStWqNJN8nlN6/30009RKy7SBMkxx120aJG9FtqWdSSHHoHzE3wHJef0dxYUeH2K1IcYW/wlrvAAc4YQYKTNtxJuMnPdfJDbU0h0owQgz80fNikLe0pGJ3VHHh6I2MxuRlIgwthDyzEIaSKHsUmtqOQeaeuKnFOzcOmahY8pQp/eZEkkhyuQCuFKpb82ZdeuXY4YYJLDth999JEqgkKFpqWmIiUlRe9TWiKHluM89jaJH5cvX3aQTzBWLVmyROcYIeSz3/r16zXGOONW5MwTl8aFw3sLFy5UUunqTlZW8nZ1h7Il+xHTaayeiRXqjl+swr1lQpyloC/P1LgRNfrZRBijiqRkql366Cwc8eiPKKuk0RJvQoWEYMYYIYJuzmE5IkwemGqTsMCCuxCc2xlnawLl+cxg2xR0TXL4olypw4YNcwgJu3aNpxBN5NDNnD17Flu2bNH7dEVz5szBJ598ovcpLZHDOZzHHvziizh58qS5qrU9sXHjRh2XfVhGRERoPReJs1triRy+CwmhC+bCeVHmYLv33nsPlZWV1R1qMk+hZMEupLn4I6vXVHus8ROFMxngeRlTZ9l4CmFmHCqQ3/keXshynQxLjynIdJUNqesMZPSYjnSVqch5eAYOuD6HyKxumgBQ+cF0X0KESU4oszglhzGoIwIL7xLX9jhs59/BjYYKeXxzld5sOaYyaBHfffedQ5ihNbccksNAz3pa1qRJk+ApBI0bN07vU1oix8/PT8dk8Ge5R2IOYw0Vbs6Rlpam7TgHAzkJZUwxs7+WyHnrrbe0zrzHsZicMKZ9+OGHOgaJWrVqFVNpefErQMniQGQ9vRCZj0xRa9DjfycySI5RT5fmC0uficj8/VCkThyE5Em/Q/LEgVIOQpL8Thr/WyRPGIRD0x6TTWg3JYPZWpBYjrPFMBlQ91bSBX8v/Bnij3ui8tIWeWTxvfrs/GO8hAlncvhSNTU1mj6b0jzmUHGmNRFU9MyAmRqDeJ/SEjlc4RzbWXjfHJ+xKyAgQMdnRsg0mP1IEl2ns2tzJofui2DikpiYiBMnTjiskYkAyeH7SXYnm1A7g0TV35KRN+x9ZEganSsk5HpIHJHYQ0LoymxqMVIvRMW7SUDe/ziOJnRHXOKDiDvqgtjEhxCXwGtXlUMZDwoJklYLAeq2ROjeDHK4We2iro6nBqmVY3DxWqI8hby8ckIlcIUayjBBcujOKEw5GYhNob83szVvb29HgHYmh2CKSyXRXVG5zuSwjv2mTJmiLst5/Pz8fG1HhTJhoIukBZJwgvsf9mW29vHHHyuhBPdU5rjz58/XOpLHvky96XK3bduGObNn66LhM0mGKPscIcegx1DClegTyJ24Fimu4tbcjdNlI84YLo7CU+gkt1GIy3RBkOxzgo6JlN2L4LIuCDkm7qtc9jsiIeWy/3GQwRRarIUZm5DFU4MgSbMjSt1kI+qPukbjxRt5dKQPROsxiaH/Nq5sNpvuYd544w21DgZuU5j1nDt3Ttu9/fbb2ma2vDCV3hxFsvmjgtmHmz6uXLo/tjf7kWCOa5YklaucqTXnZjsS4gy6JtazfaokHgRjlTnu6tWrtY7g4po1a5ZjX+Utz7J48WJ11wJxa6IAfW/Vg6GM+rIaWKdtQl6/uch2myKWYwR+w5qMD2rxsglNTHtICOmkElR2D/aLlQSLNYSWCQGlJEbqSxlbmgjS7EzaBeb9HFHHnoTt3Lsyo7H/MGCmoPIsDWpCInQnWqkZU0ZGxi3FtJKcnBykp6drnemKTJj+vqqqCuHh4Th16pS2of9vPh7FYrHoWNwnsU1SUpJj7ObgfsfsR7dLcHPK3+zDRWGCMYzPyVODoKAgREZGqlXaIZZjf277wjT50fLE4jBYBsxHRk/GIR7hSNKgsccHcT1fRkpMb0Sld0dURndEiguLTpcNaeaDOGh5CIctUmbdh9DSLojQUwEmA9zfSFnYBbGlL+DMZW467ZlYi59JTbfmeLpW0ZyIltCWNv8uTOLvFDIOE4JbwXiBqn05SB28HJmyp8lTYvz0S6fV/XUULBqMnGUDkbN0ICwrXkDm8t8ga9kAZC8fhKzlLyBhtTuOZD+gp9Ihxffaj3JckFDxCq7WpTvp/KexxcB/Ton/61By7NctQ92KOJWs87AM+7NsTmUv487/F+BngxmSRs+Alam0iEXSZ2uP1+V6GiySVlslpQ53fR6x6RKXxMUFF92NQ7aeyDo5U1R+Wsc1wHjw/0vCrdAqORqb1QUISdWN+gnB+qvZsPaeIXGHX0EDJMXmZ2lJsSV5KGQpri9bCCyRzWhMn4GIEZcXKml0bGE/fF/9oYzVoB6sXr8ZUUw4X7ejVXKoLiM8kyBjdVetj0fqM3OQ3Zuk8B87jE/VNp4YSKJQLGWuJBDFfb0R2ec5RFkkpS55VtLkEKGYI3Kc5sQQ7eQ4ow1uTW2mCfagfSGyFJZnF4qFGCcJtCL+70CmWE+WSI5c54tFRfXzRE7udNntS5osXQ1yTCHM0Z3r2kG0yXIcOrMbj6HOOtQfv4bs/muR2Xe6EDNLrIdfSf3EYrhJ9YHlFzNR7sPdvmwK7cZy1f6V1QAH5okzS3OSdpho3XJuB9Fy44165I77Kyz9/IQQL8nguFkNQPxj/qj6MtP4VwSC5CjaSWgr7ogcxqJ6Zlqy+KtWRSJGkoEcniY8MQ81GT/Y2zATMwhx/tuO1nHH5BgQhUtGd+1QJVI8P0LtaeM8yeHL7Gj6D+t2tAWNjY3V/wSFQGATQRppfQAAAABJRU5ErkJgglBLAwQUAAYACAAAACEA6EXOh78FAAA0NAAADQAAAHhsL3N0eWxlcy54bWzUW1tv4jgUfl9p/0OUfaa5lDCAgNGUNtJIs6OV2pX21SQOWOPEyDEdmNX+9z3OhQRamhsJgFQ1ceJzvnP1yXEy+bz1qfKKeUhYMFWNO11VcOAwlwTLqfr3i90bqkooUOAiygI8VXc4VD/Pfv9tEoodxc8rjIUCJIJwqq6EWI81LXRW2EfhHVvjAK54jPtIwClfauGaY+SGcpJPNVPXB5qPSKDGFMa+U4aIj/iPzbrnMH+NBFkQSsQuoqUqvjP+ugwYRwsKULdGHznK1hhwU9nylEk0+oaPTxzOQuaJO6CrMc8jDn4Ld6SNNORklIByPUqGpenmgexbXpNSX+P4lUjzqbNJsPFtX4SKwzaBAHPuh5T4ylcXBgd9VYmtMmcu6OkP/U7XVW020ZLps4nHgozKPQgsVTn+EbCfgS0vxaTlXbNJ+Et5RRRGDEkjQD6Oz+eIkgUnctBDPqG7eNiUA84K8RA8J54Y8Y6JHZGMbj4LyQVw3SM9B1kt0hHIRijdK7wPCpcDswn4psA8sOFESY5fdmvQdgBhFAsc3Vdw95KjnWFa5SeEjBJXoljOGWVc4cvFVLXt+Vz+STKL5AIJXLzF4A/gDtL2OcBwFsMqAHeClw2/0agqr4hlCPgYdyEdpS58r4Mw8dhsQrEnACsny5X8L9haCsSEgJidTVyClixAVEqTzsjPhDwGKWuq+tglGx/IOnkN6dEvUoVkk3BJ54gVpKl0BtoIJiNAMoqwRFBOkM/fDIAr4E0lbY4hcYKciM2QHGmwkj4+xFIoamzsdmwde1RrZvyQ/M1Y6PJxViXkPwyhtzrPgrntvFI9ex2LUpjFuhOmQoLa67VEmJWN9Rp5sgjGW9eoC6aOmbrSTakAuAYwhQ5WbTlrUghUsGdpNjn0pedU9cf6q09rkEoTLqyxStUUhZZrv7ZoM/sdrShnt9oJgsePEWetnY+JX6p+Pi+OI0c8Jl7o7c3QtGrHJrVZabW8iaKTD2cNI/o8vl0U9MdczlRpnHarqwNU0iXfWSZvzPK14Ca9DGiNOJjSZ9nD+Mc7aPFtvVx7Dxq4sjMlO33yEJpMyWHcColPwAW0PLWYdo5sfwjdjup0la23Z3Awuz/KYJknYe2nK2i9prvvG3+BuR01kGW/JR6VDcik+3KSBdz7ruTAOkVYhkV8z0PUkarLUnZPE6V0xRJa9l2zNC6gWQP62J3Lad2cB8Ve94WSZeDjdFcAevPxqfKTo/UL3qYhpW29o8DPh+7JuLqA+c2GkdWJXrpxF9B+lt1ht6BGWMiNiizHNkt55qdmQdKJZbpJkuCjF7ZMi77Rkp1a1FlTxMneaVxe5ZLhFSv5ApChuqxcmRmDCyzmDfNULTm7yTsHDgm1d/U66dSCUBBC8CqJII58HwAe19Ti6qLU40qpx4pTtYkBLLouE2tpvNmia1yAp3kB1RoXeKBq+KBREDIrxskveKiVQeNAhY7hXaUsjNKRs9TpDcvR6xGk4WpxPYI0jNpuBKmWpK9HuU1T/xVJchN+UqpV0HDNuCKbtNuA6HBZgNKpSYVUqSSUredaPaZ2mwqHdWttkPAS7A2o0rwNlO2WXWeyuNluKXIulF1a/Ew95XaXvHMptksnfVex0UYebN3l9gcPdgf3+3yKfJF+qn6X+2k0l6YWG0IFCd7ZGQSa7jbba4w+EhDy44poF3LPBVZ0F3toQ8XL/uJUzY7/jF64hpZEctdf5JWJiMRUzY6/ybe6oQ0EuRe2I76F8Ao2/Fc2nEzVf58ePo0en2yzN9Qfhr3+PbZ6I+vhsWf15w+Pj/ZIN/X5f7lPPBp84BF9kQIdLKM/Dil8BsITYRPwz9nYVM2dxPCjd8IBdh77yBzoXyxD79n3utHrD9CwNxzcWz3bMszHQf/hybKtHHar5ocgumYY8SclErw1FsTHlASprVIL5UfBSHD6gRBaagkt+9xn9j8AAAD//wMAUEsDBBQABgAIAAAAIQAvLPPIvgAAACQBAAAjAAAAeGwvZHJhd2luZ3MvX3JlbHMvZHJhd2luZzEueG1sLnJlbHOEj0FqAzEMRfeF3sFoX2umi1DKeLIpgWxLcgBhazymY9nYTkhuX0M3DRS61P/899C0v8VNXbnUkMTAqAdQLDa5IN7A+XR4eQNVG4mjLQkbuHOF/fz8NH3yRq2P6hpyVZ0i1cDaWn5HrHblSFWnzNKbJZVIrZ/FYyb7RZ7xdRh2WH4zYH5gqqMzUI5uBHW6527+n52WJVj+SPYSWdofCgyxuzuQiudmQGuM7AL95KPO4gHnCR9+m78BAAD//wMAUEsDBBQABgAIAAAAIQAVr6o8vQAAACsBAAAjAAAAeGwvd29ya3NoZWV0cy9fcmVscy9zaGVldDEueG1sLnJlbHOEj80KwjAQhO+C7xD2btJ6EJGmXkTwKvUBlmT7g20SsvGnb28ugoLgbWeX/Wam2j+nUdwp8uCdhlIWIMgZbwfXabg0x9UWBCd0FkfvSMNMDPt6uajONGLKT9wPgUWmONbQpxR2SrHpaUKWPpDLl9bHCVOWsVMBzRU7Uuui2Kj4yYD6iylOVkM82RJEM4fs/J/t23YwdPDmNpFLPyyUjfjIzTISY0dJg5TvHb+HUubIoOpKfVWsXwAAAP//AwBQSwMEFAAGAAgAAAAhAMEXEL5OBwAAxiAAABMAAAB4bC90aGVtZS90aGVtZTEueG1s7FnNixs3FL8X+j8Mc3f8NeOPJd7gz2yT3SRknZQctbbsUVYzMpK8GxMCJTn1UiikpZdCbz2U0kADDb30jwkktOkf0SfN2COt5SSbbEpadg2LR/69p6f3nn5683Tx0r2YekeYC8KSll++UPI9nIzYmCTTln9rOCg0fE9IlIwRZQlu+Qss/Evbn35yEW3JCMfYA/lEbKGWH0k52yoWxQiGkbjAZjiB3yaMx0jCI58Wxxwdg96YFiulUq0YI5L4XoJiUHt9MiEj7A2VSn97qbxP4TGRQg2MKN9XqrElobHjw7JCiIXoUu4dIdryYZ4xOx7ie9L3KBISfmj5Jf3nF7cvFtFWJkTlBllDbqD/MrlMYHxY0XPy6cFq0iAIg1p7pV8DqFzH9ev9Wr+20qcBaDSClaa22DrrlW6QYQ1Q+tWhu1fvVcsW3tBfXbO5HaqPhdegVH+whh8MuuBFC69BKT5cw4edZqdn69egFF9bw9dL7V5Qt/RrUERJcriGLoW1ane52hVkwuiOE94Mg0G9kinPUZANq+xSU0xYIjflWozuMj4AgAJSJEniycUMT9AIsriLKDngxNsl0wgSb4YSJmC4VCkNSlX4rz6B/qYjirYwMqSVXWCJWBtS9nhixMlMtvwroNU3IC+ePXv+8Onzh789f/To+cNfsrm1KktuByVTU+7Vj1///f0X3l+//vDq8Tfp1CfxwsS//PnLl7//8Tr1sOLcFS++ffLy6ZMX333150+PHdrbHB2Y8CGJsfCu4WPvJothgQ778QE/ncQwQsSSQBHodqjuy8gCXlsg6sJ1sO3C2xxYxgW8PL9r2bof8bkkjpmvRrEF3GOMdhh3OuCqmsvw8HCeTN2T87mJu4nQkWvuLkqsAPfnM6BX4lLZjbBl5g2KEommOMHSU7+xQ4wdq7tDiOXXPTLiTLCJ9O4Qr4OI0yVDcmAlUi60Q2KIy8JlIITa8s3eba/DqGvVPXxkI2FbIOowfoip5cbLaC5R7FI5RDE1Hb6LZOQycn/BRyauLyREeoop8/pjLIRL5jqH9RpBvwoM4w77Hl3ENpJLcujSuYsYM5E9dtiNUDxz2kySyMR+Jg4hRZF3g0kXfI/ZO0Q9QxxQsjHctwm2wv1mIrgF5GqalCeI+mXOHbG8jJm9Hxd0grCLZdo8tti1zYkzOzrzqZXauxhTdIzGGHu3PnNY0GEzy+e50VciYJUd7EqsK8jOVfWcYAFlkqpr1ilylwgrZffxlG2wZ29xgngWKIkR36T5GkTdSl045ZxUep2ODk3gNQLlH+SL0ynXBegwkru/SeuNCFlnl3oW7nxdcCt+b7PHYF/ePe2+BBl8ahkg9rf2zRBRa4I8YYYICgwX3YKIFf5cRJ2rWmzulJvYmzYPAxRGVr0Tk+SNxc+Jsif8d8oedwFzBgWPW/H7lDqbKGXnRIGzCfcfLGt6aJ7cwHCSrHPWeVVzXtX4//uqZtNePq9lzmuZ81rG9fb1QWqZvHyByibv8uieT7yx5TMhlO7LBcW7Qnd9BLzRjAcwqNtRuie5agHOIviaNZgs3JQjLeNxJj8nMtqP0AxaQ2XdwJyKTPVUeDMmoGOkh3UrFZ/QrftO83iPjdNOZ7msupqpCwWS+XgpXI1Dl0qm6Fo9796t1Ot+6FR3WZcGKNnTGGFMZhtRdRhRXw5CFF5nhF7ZmVjRdFjRUOqXoVpGceUKMG0VFXjl9uBFveWHQdpBhmYclOdjFae0mbyMrgrOmUZ6kzOpmQFQYi8zII90U9m6cXlqdWmqvUWkLSOMdLONMNIwghfhLDvNlvtZxrqZh9QyT7liuRtyM+qNDxFrRSInuIEmJlPQxDtu+bVqCLcqIzRr+RPoGMPXeAa5I9RbF6JTuHYZSZ5u+HdhlhkXsodElDpck07KBjGRmHuUxC1fLX+VDTTRHKJtK1eAED5a45pAKx+bcRB0O8h4MsEjaYbdGFGeTh+B4VOucP6qxd8drCTZHMK9H42PvQM65zcRpFhYLysHjomAi4Ny6s0xgZuwFZHl+XfiYMpo17yK0jmUjiM6i1B2ophknsI1ia7M0U8rHxhP2ZrBoesuPJiqA/a9T903H9XKcwZp5memxSrq1HST6Yc75A2r8kPUsiqlbv1OLXKuay65DhLVeUq84dR9iwPBMC2fzDJNWbxOw4qzs1HbtDMsCAxP1Db4bXVGOD3xric/yJ3MWnVALOtKnfj6yty81WYHd4E8enB/OKdS6FBCb5cjKPrSG8iUNmCL3JNZjQjfvDknLf9+KWwH3UrYLZQaYb8QVINSoRG2q4V2GFbL/bBc6nUqD+BgkVFcDtPr+gFcYdBFdmmvx9cu7uPlLc2FEYuLTF/MF7Xh+uK+XNl8ce8RIJ37tcqgWW12aoVmtT0oBL1Oo9Ds1jqFXq1b7w163bDRHDzwvSMNDtrVblDrNwq1crdbCGolZX6jWagHlUo7qLcb/aD9ICtjYOUpfWS+APdqu7b/AQAA//8DAFBLAwQUAAYACAAAACEAUp3cgxAMAAAhQwAAGAAAAHhsL3dvcmtzaGVldHMvc2hlZXQxLnhtbJyTXW/bIBSG7yftP1jcxxjHtRIrTqU1qtabqVq77ZpgHKOA8YB8dNP++w7Y+ZCiSV6jhIMh73PeA8eL+6OS0Z4bK3RbIhInKOIt05VoNyX69vo4maHIOtpWVOqWl+iNW3S//PhhcdBmaxvOXQSE1paoca4rMLas4YraWHe8hZ1aG0UdPJoNtp3htAoiJXGaJDlWVLSoJxRmDEPXtWB8pdlO8db1EMMldeDfNqKzJ5piY3CKmu2umzCtOkCshRTuLUBRpFjxtGm1oWsJdR9JRll0NPBN4Tc9pQnrN5mUYEZbXbsYyLj3fFv+HM8xZWfSbf2jMCTDhu+Fv8ALKn2fJXJ3ZqUX2PSdsPwM88dlip2oSvQ7GT4TiMQPyWU47f1By0Ul4IZ9VZHhdYk+pcVzliO8XIQG+i74wV7NI0fXL1xy5jgkISj6pbV6YdTfHSH51fMX35ESVhPodd/Fa623HvcEwgQS24DxiSlzYs8fuIS/r4h/E34GL34ORvDZyfX85OoxdP6zidbU8gctf4jKNT4tiipe0510l8VZPJumyZSkd+fNr/rwmYtN40ACq6HPiuptxS2Dxgenceo9MC0hIYyREv4Fhr6lxxAPfb40zvMsyT2Z7azT6uRjUPc6uO2ggzjoyGyUEG42CCEOwmkySpgNQoiDMBsnhEJCRoj/VSL0QH80F+E8Jv8+GxyO9i8AAAD//wAAAP//rNvbbttGFIXhVwn0AHV0sJsUTi4qQQk5x1cI3AApCrRFHfTw9uWIe4t75h/LtdKrFh82aWWJHs0i5fvHL58/fz18+vrp/f0fv/316o93q83q1ePvn359nP7vh/Xd6tWXr+9W5b9/r3efHn746Z/D58eHz79O+Pq7zer9/UM55sdy0DS2ejX546R/vn99f/Pn+/ubB5k4cmJ9nriZfvT55+96P//76cxffn745cffyqvpv5jb86spp3i32r41L2dTv5z9PDK9qPML3tYTBzmJnbhr/k0y8trM3N7WMx9kZr26kSQ+QgbICHEQDwmQCEmQLLIpr7B6J25778SbF70T5RTvVrvX53/9XsREtmuCnyfKz9Frade8N8d5ZLs9n/aDyG6JGTJARoiDeEiAREiCZJFbxDz9bvEX7mUxl1PUMYvYK7OJeZ6oYm7eieM8YmMWMTFDBsgIcRAPCZAISZAswpinJeRbYy6nqGMWMTE3a8RhnqhibpaI4zxiYxYxMUMGyAhxEA8JkAhJkCzCmKd/6bfGXE5RxyxiYv6+uZrniSrmdrWeR2zMIiZmyAAZIQ7iIQESIQmSRRjz9Nn2rTGXU0wxL59M+1mmheq88r5pYp4nqpibd+I4j9iYRUzMkAEyQhzEQwIkQhIkizDm9fTZ3t0N/ffdyPF0jmk7Yj6tlEwkpIE0khzJkwIpkhIpK3WymfZh33oNrss5povQbsTeNls1mbG7uXWzuzzITHmxy66huXiPMlS9EfPP39o3AjTogcvUSHIkTwqkSEqkrNR5I7pb9mmFvrhlX8878t1yWe6VTIjrZZd+2ukfZKZOunnLjjJUJT3/uCpp0KAH2qQx5TjlSYEUSYmUlTpJb59YDi4nXY6aLnKbtJBNuqkoh/U8U973paQg6XmoSlrIXtOgQc5u3o+R5EieFEiRlEhZqZN0twY+V0PXc5epkhaySbdVTw4r7/uyerQFVoaqpKU62aRBgx5or2lMOU55UiBFUiJlpU7S/0PNW0urW/6Je6HpHTtHum6bnsyUq+A8dNuWEBmqcmfb06nlFQykkeRInhRIkZRIWamTe2kqvRstL9lasKGVWzXl5oe9JtnRODWSHMmTAimSEikrdbLplrVnf/uljdkN7LopW/v1PFTtJtrOJjPld2ZZedt9rgxV1yV7m07Z65LNjVOO5EmBFEmJlJU62ZfO8eIbgGupaPYzTsiuAG1tk8Oqz7g7fMaxuclx1VXO7sapkeRInhRIkZRIWamTdKkdL096LivVZ5yQTbptbut5pqxHy1qLzzgpQraqoC19lFOZ8AfSSHIkTwqkSEqkrMSkN0/VuMs3tctR9b7tdKKJbNLN5XqQmXrf1nYRGbKrh5JZuUkDaSQ5kicFUiQlUlbqJN0thc+t3BupgWb1UDJJb9rWJzPVvu22ve0jQ1XSbH06ZdZp0khyJE8KpEhKpKzUSfqq1rdh61OySbetT2bKJ/ayerSfiDJUJc3Wp1M2aUyNnHIkTwqkSEqkrNRJ+qrWt2HrU7JJt61PZup1GqsHW58cZz8RSQNpJDmSJwVSJCVSVuokfVXr27D1Kdmk29YnM3XS7d5Dhqprmq1Pp+w1jamRU47kSYEUSYmUlTpJd1vfc/eMNtLz7DotZJNue54cVvac59XjDg+IpdSZvYccV13TqH4Dp0aSI3lSIEVSImWlTtJP9bzLe4+5s9ld3kbIJt20m4PMVNf0XbOYH2WouqbZGnXKXtOYGjnlSJ4USJGUSFmpk/RVrXEjrdFe00I26bYjymF10s1ifpShKml2RJ2ySbMjcsqRPCmQIimRslIn6as64oYdUckm3XZEmamTbr8RIENV0iiEH3XKJo2pkVOO5EmBFEmJlJU6Sfc64rQgPvN1HCmEd8v3LjbsiJu2I8pMaazLOt3ej5OhKml2RJ2ySWNq5JQjeVIgRVIiZSUmvb2qI56Omgqh/WjbtE+wZMjO7Np9n8xUXeau/aaADNnslUxrJA2kkeRInhRIkZRIWamT/VWtccvWqGRv3LWtUWbq9aRtjTJUJc3WqFPmKieNJEfypECKpETKSp2kr/p635atUckm3bZGman7ebsbkaEqabZGnbJJszVyypE8KZAiKZGyUifpq1rjFMPpnpNZuZVs0lg95Fmhva192+5G5ERV0nxWqFM2aUyNnHIkTwqkSEqkrNRJ+qrWWD5Ey909uypvm23FXoaqmbbdyEy9nrT3RmSoyp49Uqds9uyRnHIkTwqkSEqkrNTJvtsjn7vft2WPVLq4nsyH1etJuxOUE1VJ83mhTtmkMTVyypE8KZAiKZGyUifpbo8sV+Z//2L0Virk8q/eC9kbe1usLvNh5f76si9s70nJiarc2Sp1yubOVskpR/KkQIqkRMpKndzbVnmptx+3UtzMXQwlu0NDvRs4NZIcyZMCKZISKSt1Uniq8b3gafWWz/GUbDZ8jsepkeRInhRIkZRIWamTTfc53gt/M+dyVB6sLI+c22fX5S8ayt9lLF/ZPCidvr1/+obWUaj6RWRB0yn7i8iCxilH8qRAiqREykqMeforgvpx6cUbaKfpKSv73ZJds/fc69ASwkHp9PPnQIVsoErmuiUNpJHkSJ4USJGUSFmpE2jbui4HOtef6fab/iXLfvru8Ol6tPEJ2fikN5klUQ60N3ZJA2kkOZInBVIkJVJW6sTXVqnL8c1tpYpPyMYnZOOTmmPjYz8q36Ctv/YzkEaSI3lSIEVSImWlTnxtP7oc31xBqviEbHxCNj4+KptuqrdfkSINpJHkSJ4USJGUSFmpE19bei7HN7eIKj4hG5+QjU/qh7362Ft2oIE0khzJkwIpkhIpK3Xia3vL5fjmalDFJ2TjE7Lx8aHWjmWENJBGkiN5UiBFUiJlpU58Tz3Ueslfac77/ukpw/KBIvTmTIed0NszHYWmLbse+EFpOddH0kAaSY7kSYEUSYmUlU7/xvnvLW+Wv8L9FwAA//8AAAD//5RQzU7DMAx+lcgHToguS7ex0FaimyY4ME0bL5CtXhfRNpGTahJPTxsoCNELl8T2F38/SWqkEldYVY6dTNv4FO4hS76njPCcQi6Wci2WEP1F4olcx/MRZBPL3SiQxzIfpeJc5nw2JsIXMp+O7oiJzIUY2xGdjAjGop+MWWJViS+KSt04VuG5yzu5WwAjXV6G2hsbpjNgR+O9qYfugqpA6jsB7GyMH5ruX3reA/rWMqss0kG/YwpLYO6kqq6ac2CGNDZeeW2aFKwhT0p7YK3DjSbndx3Dtq2PPSnvE33KbYJOlpiieAr62Y2q7cMqnPCqa3Rsi1e2N7VqbvdYtpUiCCifhusxiX6We54vyn/w9N5YeL8LZIOp6LfHgtRVNyUjqYsU6LkIOaKroTd3QfTZBwAAAP//AwBQSwMEFAAGAAgAAAAhAJzbwdpWAQAAIAMAABMACAFkb2NQcm9wcy9jdXN0b20ueG1sIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAtJI9b8IwEIb3Sv0PlueGOCHhI0qCIIENhICyG+cCkRI7sg1thPjvNW2BsnRoxWbrTs89p/fCwXtVogNIVQgeYadFMALORFbwbYRfVxOrh5HSlGe0FBwi3IDCg/j5KZxLUYPUBShkEFxFeKd1Hdi2YjuoqGqZMjeVXMiKavOVW1vkecEgFWxfAde2S0jHZnulRWXVVxz+4gUH/VdkJtjZTq1XTW104/Ab3qC80kUW4WPqJ2nqE99yx/3EcogzsvrtftciPULckZtM+sPxCaP63OxixGllVl/uAPTMPA3xoIOyflNaxlOqNDoinBdQZjhAeGn212rNMTqF9q0vtC8W//RpX3ySxfLOZJHOhvOHjPQuI1Oq6VRkUN4N7vgucXK28Ty37Xe9DWzAB8djD3Hxr3EIqT8jUaPmTucaBvqZxgvCQmYgzxFRxX5Jx76ddvwBAAD//wMAUEsDBBQABgAIAAAAIQCgP5/6qQEAAGMDAAAQAAgBZG9jUHJvcHMvYXBwLnhtbCCiBAEooAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJyTTW/bMAyG7wP2HwzfGzvdUAyBrKJLN/SwYAHidmdWpmOhsmSIrJHs14+OUcdZd9rt5QdePaQkdXtoXdJjJBt8kS4XeZqgN6Gyfl+kj+X3qy9pQgy+Ahc8FukRKb3VHz+obQwdRrZIiVh4KtKGuVtlGZkGW6CFlL1U6hBbYAnjPgt1bQ3eB/PaoufsOs9vMjww+gqrq24yTEfHVc//a1oFM/DRU3nsBFirMjC40raoc5WdA3XXdc4aYJleb6yJgULNyQaM9RyoSb4dDDqVzduU8O/QvEbLx8FtHqqdAYdrOVrX4AhVdk6oB4RhrVuwkbTqedWj4RATsr9lsddp8gyEA3CR9hAteBbwoW0MTtp1xFH/CvGFGkQmlUnDmDzJee9c2896eWoQcdk4GIwgUrhELC07pJ/1FiL/g3g5Jz4xjLwjzgaI39GdBpZz/nLegIc9RilMah3aDvxRUpP6Yf0LPXZluAfGt/1eJtWugYiVXMm0/ymhHmS10YnJV9nzMOxlPIW0bsDvsXqzeF8Yns3T+Gf08maRf8rlHcxyKjv/Dv0HAAD//wMAUEsDBBQABgAIAAAAIQC+fZiN0gEAAGEDAAARAAgBZG9jUHJvcHMvY29yZS54bWwgogQBKKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8k1Fv2yAQx98n7TsgvzvYjjplVkK1rcteWmlaM3XqG4WLzWoDgkscf/sBSbxkmvp43P9+/O8OlreHviN7cF4ZvcrKWZER0MJIpZtV9nOzzhcZ8ci15J3RsMpG8Nkte/9uKWwtjIPvzlhwqMCTQNK+FnaVtYi2ptSLFnruZ0GhQ3JrXM8xhK6hlotX3gCtiuID7QG55MhpBOZ2ImYnpBQT0u5clwBSUOigB42elrOS/tUiuN7/tyBlLpS9wtGGnk52L9lSHJOT+uDVJByGYTbMk43gv6S/Hu4fU6u50nFWAjK2lKJGhR2wR+i2CB7JVw0H5cm9Ei2GsSD5AdY4XNJJGov87uU3CGTpeApCQjjgaFzguQZG8q2DF7NPqnMm7uQVxsE46UP9VRQAErxwymLYNPtEfAuAedhd3qmmRWuCIZcMkUFhS/gOTd6ABscRJFF9WFe67RITb+xCKw/hwWwVyM8jWxvtyR2QJ9Ntk4d/8rHEwV7FB8eKpJjC0H/a0bHXcGuYen3c0TnzNP9yt1lnrCqqKi8+5tViU5Z1taiLxXO0d1Uft3A86E8G3ybO87LKy5tIjNCbC+IZwNLDDyNpjBuPQxbX0dWnYH8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAE/15eSEAQAAtwUAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAE16+ZQIBAADfAgAACwAAAAAAAAAAAAAAAAC9AwAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAgT6Ul/MAAAC6AgAAGgAAAAAAAAAAAAAAAADwBgAAeGwvX3JlbHMvd29ya2Jvb2sueG1sLnJlbHNQSwECLQAUAAYACAAAACEAoJ5M9y8DAAAjCAAADwAAAAAAAAAAAAAAAAAjCQAAeGwvd29ya2Jvb2sueG1sUEsBAi0AFAAGAAgAAAAhAOfb67vFBAAA+w8AABQAAAAAAAAAAAAAAAAAfwwAAHhsL3NoYXJlZFN0cmluZ3MueG1sUEsBAi0AFAAGAAgAAAAhANu8duwKAgAA5wMAABgAAAAAAAAAAAAAAAAAdhEAAHhsL2RyYXdpbmdzL2RyYXdpbmcxLnhtbFBLAQItAAoAAAAAAAAAIQAzNdaiDA8AAAwPAAATAAAAAAAAAAAAAAAAALYTAAB4bC9tZWRpYS9pbWFnZTEucG5nUEsBAi0AFAAGAAgAAAAhAOhFzoe/BQAANDQAAA0AAAAAAAAAAAAAAAAA8yIAAHhsL3N0eWxlcy54bWxQSwECLQAUAAYACAAAACEALyzzyL4AAAAkAQAAIwAAAAAAAAAAAAAAAADdKAAAeGwvZHJhd2luZ3MvX3JlbHMvZHJhd2luZzEueG1sLnJlbHNQSwECLQAUAAYACAAAACEAFa+qPL0AAAArAQAAIwAAAAAAAAAAAAAAAADcKQAAeGwvd29ya3NoZWV0cy9fcmVscy9zaGVldDEueG1sLnJlbHNQSwECLQAUAAYACAAAACEAwRcQvk4HAADGIAAAEwAAAAAAAAAAAAAAAADaKgAAeGwvdGhlbWUvdGhlbWUxLnhtbFBLAQItABQABgAIAAAAIQBSndyDEAwAACFDAAAYAAAAAAAAAAAAAAAAAFkyAAB4bC93b3Jrc2hlZXRzL3NoZWV0MS54bWxQSwECLQAUAAYACAAAACEAnNvB2lYBAAAgAwAAEwAAAAAAAAAAAAAAAACfPgAAZG9jUHJvcHMvY3VzdG9tLnhtbFBLAQItABQABgAIAAAAIQCgP5/6qQEAAGMDAAAQAAAAAAAAAAAAAAAAAC5BAABkb2NQcm9wcy9hcHAueG1sUEsBAi0AFAAGAAgAAAAhAL59mI3SAQAAYQMAABEAAAAAAAAAAAAAAAAADUQAAGRvY1Byb3BzL2NvcmUueG1sUEsFBgAAAAAPAA8A6gMAABZHAAAAAA==

Response

{
    "status" : 201, 
    "report_template" : {
        "id" : "65ef0081697a365c4bad3ba0", 
        "name" : "Selftest Enexis Lichtmast Report", 
        "place_holders" : [
            {
                "aanvraag_ingevuld_door" : ""
            }, 
            {
                "datum_ingevuld" : ""
            }, 
            {
                "ov_eigenaar" : ""
            }, 
            {
                "aanvrager" : ""
            }, 
            {
                "uitvoerende_aannemer" : ""
            }, 
            {
                "totaal_aantal_masten" : ""
            }
        ], 
        "fields" : [
            "Case_nr", 
            "DatumAanleg", 
            "LengteAK", 
            "LengteAK", 
            "Mastnummer", 
            "NaamMonteur", 
            "Opmerking", 
            "SchetsVn", 
            "SoortWerk", 
            "Straatnaam", 
            "TypeAK", 
            "TypeAK", 
            "TypeMof", 
            "Woonplaats"
        ], 
        "orientation" : "portrait", 
        "default_page_size" : "A4", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3ba0/65ef0081697a365c4bad3ba0.xlsx", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3ba0/Selftest Enexis Lichtmast Report", 
        "created_at" : "2024-03-11T13:00:49.360269Z", 
        "updated_at" : null, 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : null, 
        "deleted_by" : null, 
        "file_name" : "65ef0081697a365c4bad3ba0.xlsx", 
        "description" : "A sheet-per-lightpost report with auto-generated image"
    }, 
    "uri" : "/v1/reports2/create_report_template_base64/XLSX/all_users"
}


Report Templates - Update the report template (no document included)   

Update the report template. The Request Body may contain only the properties to be updated. However it's advised to send the complete updated template again.

See also:
    Report Templates - Create a report template (no document included)
    Report Templates - Retrieve a report template

Request

PUT    /v1/reporttemplates/65ef0081697a365c4bad3b9f
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6
Content-Type: application/json

Request Body

{
    "name" : "My Updated Report Template", 
    "place_holders" : [
        {
            "User Name" : "Fons"
        }, 
        {
            "Date" : null
        }
    ], 
    "orientation" : "landscape", 
    "default_page_size" : "A3"
}

Response

{
    "report_template" : {
        "id" : "65ef0081697a365c4bad3b9f", 
        "name" : "My Updated Report Template", 
        "place_holders" : [
            {
                "User Name" : "Fons"
            }, 
            {
                "Date" : null
            }
        ], 
        "fields" : [
        ], 
        "orientation" : "landscape", 
        "default_page_size" : "A3", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/index.html", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/My Updated Report Template", 
        "created_at" : "2024-03-11T13:00:49.284Z", 
        "updated_at" : "2024-03-11T13:00:49.395399Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : "65ef0081697a365c4bad3b98", 
        "deleted_by" : null, 
        "file_name" : null, 
        "description" : ""
    }, 
    "uri" : "/v1/reporttemplates/65ef0081697a365c4bad3b9f", 
    "status" : 200
}


Report Templates - Update the form template (including document)   

Updates the report template, by uploading a new version of the report template document.

See also:
    Report Templates - Create a form template (including document)
    Report Templates - Retrieve a report template

Request

POST    /v1/reports2/update_report_template_base64/65ef0081697a365c4bad3ba0
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Search Value

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

Response

{
    "status" : 200, 
    "report_template" : {
        "id" : "65ef0081697a365c4bad3ba0", 
        "name" : "Selftest Enexis Lichtmast Report", 
        "place_holders" : [
            {
                "aanvraag_ingevuld_door" : ""
            }, 
            {
                "datum_ingevuld" : ""
            }, 
            {
                "ov_eigenaar" : ""
            }, 
            {
                "aanvrager" : ""
            }, 
            {
                "uitvoerende_aannemer" : ""
            }, 
            {
                "totaal_aantal_masten" : ""
            }
        ], 
        "fields" : [
            "Case_nr", 
            "DatumAanleg", 
            "LengteAK", 
            "LengteAK", 
            "Mastnummer", 
            "NaamMonteur", 
            "Opmerking", 
            "SchetsVn", 
            "SoortWerk", 
            "Straatnaam", 
            "TypeAK", 
            "TypeAK", 
            "TypeMof", 
            "Woonplaats"
        ], 
        "orientation" : "portrait", 
        "default_page_size" : "A4", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3ba0/65ef0081697a365c4bad3ba0.xlsx", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3ba0/Selftest Enexis Lichtmast Report", 
        "created_at" : "2024-03-11T13:00:49.360Z", 
        "updated_at" : "2024-03-11T13:00:49.480605Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : "65ef0081697a365c4bad3b98", 
        "deleted_by" : null, 
        "file_name" : "65ef0081697a365c4bad3ba0.xlsx", 
        "description" : "A sheet-per-lightpost report with auto-generated image"
    }, 
    "uri" : "/v1/reports2/update_report_template_base64/65ef0081697a365c4bad3ba0"
}


Report Templates - Retrieve the list of all report templates   

Retrieve the list of all report templates owned by the given user.

See also:
    Report Templates - Create a report template (no document included)

Request

GET    /v1/reporttemplates
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Response

{
    "report_templates" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/reporttemplates?page=1&perPage=500", 
                "self" : "/v1/reporttemplates", 
                "first" : "/v1/reporttemplates?page=1&perPage=500"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/reporttemplates?page=1&perPage=500", 
                "self" : "https://api.mycumulus.com/v1/reporttemplates", 
                "first" : "https://api.mycumulus.com/v1/reporttemplates?page=1&perPage=500"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0081697a365c4bad3b9f", 
                "name" : "My Updated Report Template", 
                "place_holders" : [
                    {
                        "User Name" : "Fons"
                    }, 
                    {
                        "Date" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "landscape", 
                "default_page_size" : "A3", 
                "template_preview_url" : null, 
                "user_id" : "65ef0081697a365c4bad3b98", 
                "visible_to" : "all_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/My Updated Report Template", 
                "created_at" : "2024-03-11T13:00:49.284Z", 
                "updated_at" : "2024-03-11T13:00:49.395Z", 
                "deleted_at" : null, 
                "created_by" : "65ef0081697a365c4bad3b98", 
                "updated_by" : "65ef0081697a365c4bad3b98", 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }
        ]
    }, 
    "uri" : "/v1/reporttemplates", 
    "status" : 200
}


Report Templates - Retrieve the list of all public report templates   

The public report templates are generic and available to all MyCumulus users.

See also:
    Report Templates - Create a public report template. (Type mc_admin and all_mc_users)

Request

GET    /v1/public/reporttemplates?page=1&perPage=10
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Response

{
    "report_templates" : {
        "metadata" : {
            "uris" : {
                "next" : "/v1/public/reporttemplates?page=2&perPage=10", 
                "last" : "/v1/public/reporttemplates?page=2&perPage=10", 
                "self" : "/v1/public/reporttemplates", 
                "first" : "/v1/public/reporttemplates?page=1&perPage=10"
            }, 
            "pages" : 2, 
            "total_count" : 11, 
            "page" : 1, 
            "page_count" : 10, 
            "absolute_uris" : {
                "next" : "https://api.mycumulus.com/v1/public/reporttemplates?page=2&perPage=10", 
                "last" : "https://api.mycumulus.com/v1/public/reporttemplates?page=2&perPage=10", 
                "self" : "https://api.mycumulus.com/v1/public/reporttemplates", 
                "first" : "https://api.mycumulus.com/v1/public/reporttemplates?page=1&perPage=10"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0081697a365c4bad3ba3", 
                "name" : "Public Report Template", 
                "place_holders" : [
                    {
                        "User Name" : "Fons"
                    }, 
                    {
                        "Date" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "65ef0081697a365c4bad3ba1", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3ba1/templates/65ef0081697a365c4bad3ba3/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3ba1/templates/65ef0081697a365c4bad3ba3/Public Report Template", 
                "created_at" : "2024-03-11T13:00:49.675Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "65ef0081697a365c4bad3ba1", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b519812e4b06c1b130c5ef3", 
                "name" : "MyCumulus Demo", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519812e4b06c1b130c5ef3/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519812e4b06c1b130c5ef3/MyCumulus Demo", 
                "created_at" : "2018-07-20T08:06:42.496Z", 
                "updated_at" : "2020-04-28T16:04:52.118Z", 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : "5b50d939e4b06c1b130c5964", 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b5197b2e4b06c1b130c5ef0", 
                "name" : "MyCumulus A3 Landscape", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "landscape", 
                "default_page_size" : "A3", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5197b2e4b06c1b130c5ef0/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5197b2e4b06c1b130c5ef0/MyCumulus A3 Landscape", 
                "created_at" : "2018-07-20T08:05:06.492Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b519751e4b06c1b130c5eed", 
                "name" : "MyCumulus A3 Portrait", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A3", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519751e4b06c1b130c5eed/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519751e4b06c1b130c5eed/MyCumulus A3 Portrait", 
                "created_at" : "2018-07-20T08:03:29.316Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b5196f2e4b06c1b130c5eea", 
                "name" : "MyCumulus A4 Landscape", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "landscape", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5196f2e4b06c1b130c5eea/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5196f2e4b06c1b130c5eea/MyCumulus A4 Landscape", 
                "created_at" : "2018-07-20T08:01:54.389Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b51968ce4b06c1b130c5ee7", 
                "name" : "MyCumulus A4 Portrait", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51968ce4b06c1b130c5ee7/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51968ce4b06c1b130c5ee7/MyCumulus A4 Portrait", 
                "created_at" : "2018-07-20T08:00:12.676Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b51962be4b06c1b130c5ee4", 
                "name" : "Standard A3 Landscape", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "landscape", 
                "default_page_size" : "A3", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51962be4b06c1b130c5ee4/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51962be4b06c1b130c5ee4/Standard A3 Landscape", 
                "created_at" : "2018-07-20T07:58:35.601Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b5195a1e4b06c1b130c5edf", 
                "name" : "Standard A3 Portrait", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A3", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5195a1e4b06c1b130c5edf/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b5195a1e4b06c1b130c5edf/Standard A3 Portrait", 
                "created_at" : "2018-07-20T07:56:17.091Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b51954ee4b06c1b130c5edd", 
                "name" : "Standard A4 Landscape", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "landscape", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51954ee4b06c1b130c5edd/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b51954ee4b06c1b130c5edd/Standard A4 Landscape", 
                "created_at" : "2018-07-20T07:54:54.588Z", 
                "updated_at" : null, 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : null, 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }, 
            {
                "id" : "5b519403e4b06c1b130c5ed3", 
                "name" : "Standard A4 Portrait", 
                "place_holders" : [
                    {
                        "CompanyName" : null
                    }, 
                    {
                        "Address" : null
                    }, 
                    {
                        "Reporter" : null
                    }, 
                    {
                        "Date" : null
                    }, 
                    {
                        "TableTitle" : null
                    }, 
                    {
                        "PhoneNumber" : null
                    }, 
                    {
                        "Email" : null
                    }, 
                    {
                        "Website" : null
                    }
                ], 
                "fields" : [
                ], 
                "orientation" : "portrait", 
                "default_page_size" : "A4", 
                "template_preview_url" : null, 
                "user_id" : "5b50d939e4b06c1b130c5964", 
                "visible_to" : "all_mc_users", 
                "fullPath" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519403e4b06c1b130c5ed3/index.html", 
                "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/5b50d939e4b06c1b130c5964/templates/5b519403e4b06c1b130c5ed3/Standard A4 Portrait", 
                "created_at" : "2018-07-20T07:49:23.204Z", 
                "updated_at" : "2018-07-20T07:53:37.146Z", 
                "deleted_at" : null, 
                "created_by" : "5b50d939e4b06c1b130c5964", 
                "updated_by" : "5b50d939e4b06c1b130c5964", 
                "deleted_by" : null, 
                "file_name" : null, 
                "description" : ""
            }
        ]
    }, 
    "uri" : "/v1/public/reporttemplates", 
    "status" : 200
}


Report Templates - Retrieve a report template   

Retrieves a report template.

See also:
    Report Templates - Create a report template (no document included)

Request

GET    /v1/reporttemplates/65ef0081697a365c4bad3b9f
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Response

{
    "report_template" : {
        "id" : "65ef0081697a365c4bad3b9f", 
        "name" : "My Updated Report Template", 
        "place_holders" : [
            {
                "User Name" : "Fons"
            }, 
            {
                "Date" : null
            }
        ], 
        "fields" : [
        ], 
        "orientation" : "landscape", 
        "default_page_size" : "A3", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/index.html", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/My Updated Report Template", 
        "created_at" : "2024-03-11T13:00:49.284Z", 
        "updated_at" : "2024-03-11T13:00:49.395Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : "65ef0081697a365c4bad3b98", 
        "deleted_by" : null, 
        "file_name" : null, 
        "description" : ""
    }, 
    "uri" : "/v1/reporttemplates/65ef0081697a365c4bad3b9f", 
    "status" : 200
}


Report Templates - Delete a report template   

Deletes a report template.

See also:
    Report Templates - Create a report template (no document included)

Request

DELETE    /v1/reporttemplates/65ef0081697a365c4bad3b9f
X-Auth-Token: cddae046ea489ee21d254346c3bb0e0a8665fec41c9c412ccf919dcb90715b87e7bcf97b49f4d9739f33f4debf6adbb6430a37aebb15212c1be6cded5622cf915ffc2f6d462269410569c7743be0ea519f4e9eccf1a16b7a9c574105925d01153d25c47de755978d52c332f32b0353d2c8747bd82ab681309ffd17c6

Response

{
    "report_template" : {
        "id" : "65ef0081697a365c4bad3b9f", 
        "name" : "My Updated Report Template", 
        "place_holders" : [
            {
                "User Name" : "Fons"
            }, 
            {
                "Date" : null
            }
        ], 
        "fields" : [
        ], 
        "orientation" : "landscape", 
        "default_page_size" : "A3", 
        "template_preview_url" : null, 
        "user_id" : "65ef0081697a365c4bad3b98", 
        "visible_to" : "all_users", 
        "fullPath" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/index.html", 
        "fullPathToNameFolder" : "/home/ubuntu//report-templates/users/65ef0081697a365c4bad3b98/templates/65ef0081697a365c4bad3b9f/My Updated Report Template", 
        "created_at" : "2024-03-11T13:00:49.284Z", 
        "updated_at" : "2024-03-11T13:00:49.395Z", 
        "deleted_at" : null, 
        "created_by" : "65ef0081697a365c4bad3b98", 
        "updated_by" : "65ef0081697a365c4bad3b98", 
        "deleted_by" : null, 
        "file_name" : null, 
        "description" : ""
    }, 
    "uri" : "/v1/reporttemplates/65ef0081697a365c4bad3b9f", 
    "status" : 200
}


--- Public API functions: Create Reports ---


Create Report - Create a report   

Request to create a report. The request body must contain the format (either CSV, HTLM, PDF or JSON) of the report, the type, the template (with report template id and the names/values of the place holders), and queries containing the required information to filter and sort the data that must come in the report. Details about the MongoDB aggregation stages are out of the scope of this document. The $project stage is twice in the pipeline. When following this guideline, the fields will be ordered in the given sequence. The names in the headers, in case "type" : "table", will be the names used in the 2nd $project stage, the text after 'attributes.'. The column titles used by the example will be "Column 1", "Column 2", and "Column 3"

The response contains a.o. an id that allows to request the status (pending or generated) of the request: Create Report - Get the status of the report generation

See also:
    Report Templates - Create a report template (no document included)
    Report Templates - Create a form template (including document)
    Create Report - Get the status of the report generation
    Create Report - Get the list of generated reports

Request

POST    /v1/reports/generate
X-Auth-Token: 8780b05f08ad810f83a7328b4309052a7bc2e4ee9fa9517e1623dd184c6422ddddedd8b085a2a9ba14ea541d60b1288324bcfe4911393fae9987081a62a504c6c7d756821cbcbb34a80409fd1ee3ac59765c65a7274ddc9cb6d234ba44ea3cabdc19121115cd698bdafc08fcf57b2bd1ceba41578d27e769efbc9
Content-Type: application/json

Request Body

{
    "format" : [
        "html"
    ], 
    "type" : "table", 
    "templates" : [
        {
            "template_id" : "65ef0082697a365c4bad3bac", 
            "place_holders" : [
                {
                    "CompanyName" : "MyCumulus inc."
                }, 
                {
                    "Date" : "25 September 2016"
                }, 
                {
                    "TableTitle" : "Example Report"
                }
            ]
        }
    ], 
    "queries" : [
        {
            "collection" : "features", 
            "stages" : [
                {
                    "$match" : {
                        "$and" : [
                            {
                                "template_id" : "65ef0082697a365c4bad3bae"
                            }
                        ]
                    }
                }, 
                {
                    "$sort" : {
                        "_id" : 1
                    }
                }, 
                {
                    "$project" : {
                        "_id" : 0, 
                        "T1 Field 1" : "$attributes.T1 Field 1", 
                        "T1 Field 2" : "$attributes.T1 Field 2", 
                        "T1 Field 3" : "$attributes.T1 Field 3"
                    }
                }, 
                {
                    "$project" : {
                        "attributes.Column 1" : "$T1 Field 1", 
                        "attributes.Column 2" : "$T1 Field 2", 
                        "attributes.Column 3" : "$T1 Field 3"
                    }
                }
            ]
        }
    ]
}

Response

{
    "file" : {
        "id" : "65ef0082697a365c4bad3bb9", 
        "filename" : null, 
        "download_url" : null, 
        "downloaded" : false, 
        "user_id" : "65ef0082697a365c4bad3ba5", 
        "report_status" : "pending"
    }, 
    "uri" : "/v1/reports/generate", 
    "status" : 200
}


Create Report - Get the status of the report generation   

Requests the status of the report generation. When report_status = "generated", the field download_url contains the URL to download the file either automatically, see Report Templates - Retrieve the list of folders containing the template files or by using the URL in a browser.

See also:
    Create Report - Create a report

Request

GET    /v1/report_status/65ef0082697a365c4bad3bb9
X-Auth-Token: 8780b05f08ad810f83a7328b4309052a7bc2e4ee9fa9517e1623dd184c6422ddddedd8b085a2a9ba14ea541d60b1288324bcfe4911393fae9987081a62a504c6c7d756821cbcbb34a80409fd1ee3ac59765c65a7274ddc9cb6d234ba44ea3cabdc19121115cd698bdafc08fcf57b2bd1ceba41578d27e769efbc9
Content-Type: application/json

Response

{
    "file" : {
        "id" : "65ef0082697a365c4bad3bb9", 
        "filename" : "Test Project -- Template 1 2024-03-11 13.00.50.html", 
        "download_url" : "/v1/files/public/65ef0082697a365c4bad3bb9/Test Project -- Template 1 2024-03-11 13.00.50.html", 
        "downloaded" : false, 
        "user_id" : "65ef0082697a365c4bad3ba5", 
        "report_status" : "generated"
    }, 
    "uri" : "/v1/report_status/65ef0082697a365c4bad3bb9", 
    "status" : 200
}


Create Report - Get the list of generated reports   

Gets the list of the generated reports that are still available on the server. This list contains all reports that are available for downloading. The response contains a.o. the URL to download the report and an indication if the report has already been downloaded.

See also:
    Create Report - Create a report

Request

GET    /v1/reports/65ef0082697a365c4bad3ba5
X-Auth-Token: 8780b05f08ad810f83a7328b4309052a7bc2e4ee9fa9517e1623dd184c6422ddddedd8b085a2a9ba14ea541d60b1288324bcfe4911393fae9987081a62a504c6c7d756821cbcbb34a80409fd1ee3ac59765c65a7274ddc9cb6d234ba44ea3cabdc19121115cd698bdafc08fcf57b2bd1ceba41578d27e769efbc9
Content-Type: application/json

Response

{
    "public_files" : {
        "metadata" : {
            "uris" : {
                "last" : "/v1/reports/65ef0082697a365c4bad3ba5?page=1&perPage=1", 
                "self" : "/v1/reports/65ef0082697a365c4bad3ba5", 
                "first" : "/v1/reports/65ef0082697a365c4bad3ba5?page=1&perPage=1"
            }, 
            "pages" : 1, 
            "total_count" : 1, 
            "page" : 1, 
            "page_count" : 1, 
            "absolute_uris" : {
                "last" : "https://api.mycumulus.com/v1/reports/65ef0082697a365c4bad3ba5?page=1&perPage=1", 
                "self" : "https://api.mycumulus.com/v1/reports/65ef0082697a365c4bad3ba5", 
                "first" : "https://api.mycumulus.com/v1/reports/65ef0082697a365c4bad3ba5?page=1&perPage=1"
            }
        }, 
        "instances" : [
            {
                "id" : "65ef0082697a365c4bad3bb9", 
                "filename" : "Test Project -- Template 1 2024-03-11 13.00.50.html", 
                "download_url" : "/v1/files/public/65ef0082697a365c4bad3bb9/Test Project -- Template 1 2024-03-11 13.00.50.html", 
                "downloaded" : false, 
                "user_id" : "65ef0082697a365c4bad3ba5", 
                "report_status" : "generated"
            }
        ]
    }, 
    "uri" : "/v1/reports/65ef0082697a365c4bad3ba5", 
    "status" : 200
}


Create Report - Set the indication that the report is downloaded   

Sets in the list of generated reports the indication that the report has been downloaded.

See also:
    Create Report - Create a report
    Create Report - Get the list of generated reports

Request

PUT    /v1/reports/65ef0082697a365c4bad3bb9
X-Auth-Token: 8780b05f08ad810f83a7328b4309052a7bc2e4ee9fa9517e1623dd184c6422ddddedd8b085a2a9ba14ea541d60b1288324bcfe4911393fae9987081a62a504c6c7d756821cbcbb34a80409fd1ee3ac59765c65a7274ddc9cb6d234ba44ea3cabdc19121115cd698bdafc08fcf57b2bd1ceba41578d27e769efbc9

Response

{
    "file" : {
        "id" : "65ef0082697a365c4bad3bb9", 
        "filename" : "Test Project -- Template 1 2024-03-11 13.00.50.html", 
        "download_url" : null, 
        "downloaded" : true, 
        "user_id" : "65ef0082697a365c4bad3ba5", 
        "report_status" : "generated"
    }, 
    "uri" : "/v1/reports/65ef0082697a365c4bad3bb9", 
    "status" : 200
}


Create Report - Delete the report   

Deletes the report from the list of generated reports. Once the report is removed from the list, it is not available on the server anymore.

See also:
    Create Report - Create a report
    Create Report - Get the list of generated reports

Request

DELETE    /v1/reports/65ef0082697a365c4bad3bb9
X-Auth-Token: 8780b05f08ad810f83a7328b4309052a7bc2e4ee9fa9517e1623dd184c6422ddddedd8b085a2a9ba14ea541d60b1288324bcfe4911393fae9987081a62a504c6c7d756821cbcbb34a80409fd1ee3ac59765c65a7274ddc9cb6d234ba44ea3cabdc19121115cd698bdafc08fcf57b2bd1ceba41578d27e769efbc9

Response

{
    "file" : {
        "id" : "65ef0082697a365c4bad3bb9", 
        "filename" : "Test Project -- Template 1 2024-03-11 13.00.50.html", 
        "download_url" : "/v1/files/public/65ef0082697a365c4bad3bb9/Test Project -- Template 1 2024-03-11 13.00.50.html", 
        "downloaded" : true, 
        "user_id" : "65ef0082697a365c4bad3ba5", 
        "report_status" : "generated"
    }, 
    "uri" : "/v1/reports/65ef0082697a365c4bad3bb9", 
    "status" : 200
}


--- Public API functions: Files ---


Files - Upload a private file   

Upload a private file. A private file may only be used in combination with a feature.  If no feature with the corresponding feature_sequence_number is uploaded, the private file will be removed automatically after one week. A private file is only accessible with authentication of the owner.
The feature_sequence_number is a UUID and must match with the sequence_number of the feature. See Features - Upload a feature. The combination of file_sequence_number and feature_sequence_number must be unique It's the responsibility of the client to make the name unique.

The download_url in the response, allows any user with the right permissions (e.g. collaborator having access to the feature) to download the file.

The Request Body contains the fields:
    1. filename : the name of the file. Although the combination with file_sequence_number and feature_sequence_number must be unique, it's recommended that the name is unique for the user. After all, the project the file belongs to is not taken into account.
    2. file_sequence_number : Is used to guaranty that the file is not stored twice on the server in case the upload command has to be repeated in case of a communication error.
    3. feature_sequence_number : The value is the sequence_number of a feature the file is linked to. The feature_sequence_number is a UUID and links features with files.

See also:
    Features - Upload a feature
    Files - Download a private file
    Files - Delete a private file

Request

POST    /v1/files
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
Content-Type: application/json
X-Working-Project-Id: 65ef0085697a365c4bad3bc4

Request Body

{
    "filename" : "Photo1.jpg", 
    "file_sequence_number" : "File_Sequence_Number", 
    "feature_sequence_number" : "5F0DBB6F-DFA7-11EE-B775-BC9A78563412", 
    "base64_encoded_content" : "Removed base64_encoded_content from report"
}

Response

{
    "file" : {
        "fileSequenceNumber" : "File_Sequence_Number", 
        "id" : "65ef0085697a365c4bad3bc5", 
        "filename" : "Photo1.jpg", 
        "download_url" : "/v1/files/65ef0085697a365c4bad3bc5/Photo1.jpg", 
        "downloaded" : false, 
        "feature_sequence_number" : "5F0DBB6F-DFA7-11EE-B775-BC9A78563412", 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files", 
    "status" : 200
}


Files - Check if a private file exists   

Check if a private file exists. This command is introduced to check if a file of a feature already exists in case commnunication errors aborted uploading. 

The Request Body is identical to the request body of the Upload command. It contains the same fields:
    1. filename : the file name.
    2. file_sequence_number
    3. feature_sequence_number.

See also:
    Files - Upload a private file

Request

POST    /v1/files/search
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
Content-Type: application/json
X-Working-Project-Id: 65ef0085697a365c4bad3bc4

Request Body

{
    "filename" : "Photo1.jpg", 
    "file_sequence_number" : "File_Sequence_Number", 
    "feature_sequence_number" : "5F0DBB6F-DFA7-11EE-B775-BC9A78563412"
}

Response

{
    "file" : {
        "fileSequenceNumber" : "File_Sequence_Number", 
        "id" : "65ef0085697a365c4bad3bc5", 
        "filename" : "Photo1.jpg", 
        "download_url" : "/v1/files/65ef0085697a365c4bad3bc5/Photo1.jpg", 
        "downloaded" : false, 
        "feature_sequence_number" : "5F0DBB6F-DFA7-11EE-B775-BC9A78563412", 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files/search", 
    "status" : 200
}


Files - Download a private file   

Download a private file. The GET request must contain the id and the filename returned in the response of the upload command.

See also:
    Files - Upload a private file

Request

GET    /v1/files/65ef0085697a365c4bad3bc5/Photo1.jpg
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
X-Working-Project-Id: 65ef0085697a365c4bad3bc4

Response



Files - Delete a private file   

Delete the private file. The DELETE request must contain the id and the filename returned in the response of the upload command.

See also:
    Files - Upload a private file

Request

DELETE    /v1/files/65ef0085697a365c4bad3bc5/Photo1.jpg
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
X-Working-Project-Id: 65ef0085697a365c4bad3bc4

Response

{
    "file" : {
        "fileSequenceNumber" : null, 
        "id" : null, 
        "filename" : "Photo1.jpg", 
        "download_url" : null, 
        "downloaded" : false, 
        "feature_sequence_number" : "5F0DBB6F-DFA7-11EE-B775-BC9A78563412", 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files/65ef0085697a365c4bad3bc5/Photo1.jpg", 
    "status" : 200
}


Files - Upload a public file   

Upload a public file. A public file is accessible without authentication. The URL of the MyCumulus back-end combined with the download_url in the response, allows any user to download the file.

The Request Body contains the fields:
    1. filename : the file name must be unique for the user (identified by its authentication). It's the responsibility of the client to make the name unique.
    2. file_sequence_number : Is used to guaranty that the file is not stored twice on the server in case the upload command has to be repeated in case of a communcation error. The value may be null.

See also:
    Files - Download a public file
    Files - Delete a public file

Request

POST    /v1/files/public
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
Content-Type: application/json

Request Body

{
    "filename" : "Photo1.jpg", 
    "file_sequence_number" : "File_Sequence_Number", 
    "base64_encoded_content" : "Removed base64_encoded_content from report"
}

Response

{
    "file" : {
        "fileSequenceNumber" : "File_Sequence_Number", 
        "id" : "65ef0085697a365c4bad3bc8", 
        "filename" : "Photo1.jpg", 
        "download_url" : "/v1/files/public/65ef0085697a365c4bad3bc8/Photo1.jpg", 
        "downloaded" : false, 
        "feature_sequence_number" : null, 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files/public", 
    "status" : 200
}


Files - Download a public file   

Downloads a public file. The GET request must contain the id and the filename returned in the response of the upload command.

See also:
    Files - Upload a public file

Request

GET    /v1/files/public/65ef0085697a365c4bad3bc8/Photo1.jpg

Response



Files - Check if a public file exists   

Check if a public file exists. This command is introduced to check if a file exists in case commnunication errors aborted uploading. 

The Request Body is identical to the request body of the Upload command. It contains the same fields:
    1. filename : the file name.
    2. file_sequence_number


See also:
    Files - Upload a public file

Request

POST    /v1/files/public/search
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179
Content-Type: application/json

Request Body

{
    "filename" : "Photo1.jpg", 
    "file_sequence_number" : "File_Sequence_Number"
}

Response

{
    "file" : {
        "fileSequenceNumber" : "File_Sequence_Number", 
        "id" : "65ef0085697a365c4bad3bc8", 
        "filename" : "Photo1.jpg", 
        "download_url" : "/v1/files/public/65ef0085697a365c4bad3bc8/Photo1.jpg", 
        "downloaded" : false, 
        "feature_sequence_number" : null, 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files/public/search", 
    "status" : 200
}


Files - Delete a public file   

Delete the public file. The DELETE request must contain the id and the filename returned in the response of the upload command.

See also:
    Files - Upload a public file

Request

DELETE    /v1/files/public/65ef0085697a365c4bad3bc8/Photo1.jpg
X-Auth-Token: e3cc512ab34d9b4e02c221d3056f8de31fc16762aba466a2fc25eb5c2a660de3cc41408a4e6de4e3541df09740a06bc12cd4da6f236cfb4a5aec6229205a6ad5677562d126245676b41c2e9e87674f912e3a25201844e144728aa62f982f4948353a1b35b122745c83226b7b8ccb3835e9016dc8540809253a179

Response

{
    "file" : {
        "fileSequenceNumber" : "File_Sequence_Number", 
        "id" : "65ef0085697a365c4bad3bc8", 
        "filename" : "Photo1.jpg", 
        "download_url" : null, 
        "downloaded" : false, 
        "feature_sequence_number" : null, 
        "user_id" : "65ef0085697a365c4bad3bbd", 
        "report_file" : false, 
        "report_status" : null
    }, 
    "uri" : "/v1/files/public/65ef0085697a365c4bad3bc8/Photo1.jpg", 
    "status" : 200
}