Rocketfuel

Rocketfuel is the consumer client for the Marketplace Publishing Tool. It has some special APIs that are not recommended for consumption by other clients.

These APIs will change in conjunction with the Rocketfuel client.

Collections

A collection is a group of applications

GET /api/v1/rocketfuel/collections/

A listing of all collections.

Note

Authentication is optional.

POST /api/v1/rocketfuel/collections/

Create a collection.

Note

Authentication is required.

Request:

Parameters:
  • name (string) – the name of the collection.
  • description (string) – a description of the collection.
GET /api/v1/rocketfuel/collections/(int: id)/

Get a single collection.

Note

Authentication is optional.

POST /api/v1/rocketfuel/collections/(int: id)/add_app/

Add an application to a single collection.

Note

Authentication is required.

Request:

Parameters:
  • app (int) – the ID of the application to add to this collection.