Authentication
The REST API supports authentication by OAuth 2.0 bearer token exclusively. You must send the OAuth 2.0 access token as a bearer token in the Authorization header for each request.
Integration applications must be registered in SuiteProjects Pro to use the REST API to access SuiteProjects Pro data, and users must give the application explicit permission to access SuiteProjects Pro on their behalf.
For more information about using the OAuth 2.0 authorization framework, see OAuth 2.0 Authorization.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
Example
The following request sends a bearer token in the Authorization header.
GET /rest/v1/rest/v1/job-codes/ HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Authorization: Bearer <OAuth2_access_token>
In the example, <OAuth2_access_token>
is the OAuth 2.0 access token obtained for the client application connecting to SuiteProjects Pro.
Authentication Errors
Your client application needs to handle the following cases when the authentication may fail. The REST API may return one of the errors listed in the following table if the authentication fails. The response includes a HTTP Status and WWW-Authenticate header with information about the error.
|
|
Reason |
---|---|---|
400 Bad request |
error="invalid_request", error_description="Invalid Bearer token format" |
The Authorization header sent in the request must have the correct format for Bearer token authentication. For example, a missing space between “Bearer” and the token would cause a |
401 Unauthorized |
error="insufficient_scope", error_description="The access token is invalid" |
The bearer token sent in the request is not valid. Possible reasons include:
|
401 Unauthorized |
error="invalid_token", error_description="The access token is invalid" |
The bearer token sent in the request is not valid. Possible reasons include:
|