Create Project

Creates a project.

URLs

Environment Method URL
Sandbox https://api-sandbox.fndev.net/api/rest/v2/projects
Production https://api.fieldnation.com/api/rest/v2/projects

Path Parameters

Not applicable.

Query Parameters

Parameter Type Example Notes
access_token string abc123defg459hijk786lmn45 Required.

Body Parameters

Refer to Projects for a complete list of parameters.

Examples

New Project with Client and Email Notification


{
    "name": "New Project",
    "cancellation_fee": 30,
    "client": {
        "id": 188
    },
    "notifications": {
        "email_subject": {
            "manager": "New Work Order",
            "provider": "New Work Order"
        }
    }
}
 

Response

Returns the Project Object. Refer to Projects for parameter details and examples.

Errors

Standard HTTP and OAuth error codes.

Examples

400 Bad Request