Authentication

Let's learn more about authenticating with the RocketCAD API.

The RocketCAD API relies on API Keys to authenticate requests. API Keys can be created and customized from your Owner Panel > Integration menu.

Your API Keys may carry many permissions, be sure to keep them secure. Do not publicly share your API Key or reveal it in Github, client-side code, etc.

The standard RocketCAD API authentication will appear like the following example:

Standard RocketCAD API Authentication Example

POST https://api.therocketcad.com/api/1.1/wf/ping?api_key=DEVELOPER_TESTING

In this example, you are only required to supply a valid API Key, such as the example above.

Query Parameters

NameTypeDescription

api_key

string

The API Key query parameter is required for all requests. API Keys can be generated from the Owner Panel > API Access tab.

Request Body

NameTypeDescription

communityID

string

The communityID body parameter may be required in specific contexts.

serverID

string

The serverID body parameter may be requierd in specific contexts.

{
    "status": "success",
    "response": {
        "success": true,
        "message": "This API Key is valid & associated with an active community."
        "requestID": "OLV213JN6XL1BLS"
    }
}

All API requests must be made over HTTPS. Requests made over HTTP or without authentication as described above will fail.

You may learn more about RocketCAD's User, Community and API Security Practices below.

pageSecurity & Privacy

If you're ready to continue, let's learn more about Errors.

pageErrors

Last updated