Consuming SuiteProjects Pro OData Resource Data in Your Applications
The functionality described in this topic requires the following feature and role permission. For more information about the features enabled for your SuiteProjects Pro account or about your role permissions, contact your account administrator.
-
Feature: Business Intelligence Connector
-
Role permission: Publish reports.
Developers can request SuiteProjects Pro OData resource data and process the response from the SuiteProjects Pro OData service in their applications.
There are two types of information available from the OData service:
-
The metadata (OData EDMX XML schema v 4.0) describes the collection data types and bears information about the order of fields for each entity (resource or list of resources).
-
The data itself (JSON) provides the raw data as a JSON string.
Applications consuming resources from the OData service should consume the data and the metadata jointly.
The OData service only supports the HTTP GET
method.
GET Request
Send a GET request to the SuiteProjects Pro OData service method.
-
The GET request URL uses one of the following formats:
-
To access the collection of resources:
https://<account-domain>/odata/v4/<collection>
-
To access the resource collection metadata:
https://<account-domain>/odata/v4/<collection>/$metadata
-
To access the list of resources in the collection:
https://<account-domain>/odata/v4/<collection>/ list
-
To access a resource:
https://<account-domain>/odata/v4/<collection>/<resource>
Where:
-
<account-domain>
is the account-specific domain name for the SuiteProjects Pro account. For more information about your account-specific domain name, see Your Account URLs. -
<collection>
depends on the type of resource you are requesting:reports
orlistviews
. -
<resource>
is the OData resource name of the resource you are requesting.
For more information, see Your OData Feed URL and Connection Details.
-
-
The request must include an Authentication header using the HTTP Basic authentication scheme.
-
Use the following format:
<CompanyID>\<UserID>:<Password>
. -
The string value is Base64 encoded.
-
-
(Optional) Use query options to page through the resource data. The SuiteProjects Pro OData service supports the query options
$skip
and$top
either in the request body or as query string parameters in the request URL. For more information see OData Query Options.
Example of GET request:
The following examples accesses rows 501 to 750 of the published list listview12
from the authenticated user’s SuiteProjects Pro OData feed.
GET /odata/v4/listviews/listview12 HTTP/1.1
Host: company-id.app.netsuitesuiteprojectspro.com
Authorization: Basic ZG9jc191aTRfZGVtb1xtY29sbGluczpUaGlzIGlzYSB2ZXJ5IGxvbmcgcGFzc3dvcmQgeW91IHdvdWxkIG5ldmVyZ3Vlc3M=
Content-Type: application/x-www-form-urlencoded
$top=250&$skip=500
OData Response
If you request a collection, a resource or the list of resources, the SuiteProjects Pro OData service returns the response as a JSON string with the properties described in the following table.
OpenAir is now SuiteProjects Pro. As of 5 a.m. Eastern Time (UTC–5) on January 25, 2025, for your sandbox account, and on February 15, 2025, for your production account, service URLs with the netsuitesuiteprojectspro.com
domain name replace URLs with the openair.com
domain name.
For your production account, the sign-in page URL now is https://auth.netsuitesuiteprojectspro.com/login
and the account-specific domain is <company-id>.app.netsuitesuiteprojectspro.com
. After signing in, you are redirected to an account URL with the netsuitesuiteprojectspro.com
domain name. Any links or bookmarks to sign-in page or account URLs with the openair.com
domain name redirect to the SuiteProjects Pro sign-in page, even if you have an active SuiteProjects Pro session in a different browser tab.
For backward compatibility, service URLs with the openair.com
domain name continue to be supported until further notice for API requests, BI Connector requests, WSDL, and the NetSuite integration setup for real-time record import and single sign-on.
For more information about the change, see Introducing SuiteProjects Pro.
JSON object properties |
Description |
---|---|
|
The URL for the collection metadata. The metadata is provided in XML format for the entire resource collection using the OData EDMX XML schema v 4.0 ( http://docs.oasis-open.org/odata/ns/edmx). When requesting a specific entity (a resource or the list of resources in the collection), the metadata URL points to that entity. For example:
For each entity, the metadata includes the list of fields — or Properties — listed in the same order as they appear in the report or list layout in SuiteProjects Pro. Each Property as the following attributes:
|
|
An array of objects.
|
|
The number of rows in the OData feed entity (either a resource or the list of resources). |
|
The request URL to use to obtain the next rows of resource data, if the resource data continues beyond the last row return in the |