Logo
QuinceDiasJaviteran API Documentation

Get all elements and folders

GET https://api.getpostman.com/network/private

Gets information about the folders and elements added to your [Private API Network] Elements are APIs, collections, and workspaces.

Note:

The limit and offset parameters are separately applied to elements and folders. For example, if you query a limit value of 10 and an offset value 0, the endpoint returns 10 elements and 10 folders for a total of 20 items. The totalCount property in the meta response is the total count of both elements and folders.

 

Body PARAM

Key Datatype Required Description 
since
string Optional. Return only elements updated at and after this time, in ISO 8601 UTC format.
until
string Optional. Return only elements updated at and before this time, in ISO 8601 UTC format.
addedBy
string Optional. Return only elements published by the given user ID.
name
string Optional. Return only elements whose name includes the given value. Matching is not case-sensitive.
summary
string Optional. Return only elements whose summary includes the given value. Matching is not case-sensitive.
description
string Optional. Return only elements whose description includes the given value. Matching is not case-sensitive.
sort
string Optional. Sort the results by the given value. One of: - `createdAt` - `updatedAt` If you use this query parameter, you must also use the `direction` parameter.
Curl
curl -X GET 'https://api.getpostman.com/network/private?since=since&until=until&addedBy=addedBy&name=name&summary=summary&description=description&sort=sort&direction=direction&createdBy=createdBy&offset=offset&limit=limit&parentFolderId=parentFolderId&type=type' -H 'X-API-Key: '

ENDPOINTS