ProjectExists

Description

Check if project exists

Signature
bool ProjectExists(string key, string projectId)

Parameters

Name Data Type Description

key

string required

The authentication key

projectId

string required

ID of the project

Response

Data Type Description

bool

True or False

Example

var client = new AuthoringSoapClient();

var projectExists = client.ProjectExists(clientKey, "p999999999999");

if(projectExists == true){
    //project exists, so do something.
}