integrations.sh
← all integrations

Pims

OpenAPI apis-guru ecommerce

Hereafter is the documentation of the private API of . This API is designed for 3rd-party softwares, editors and partners. Its main purpose is to give access the core data of a Pims customer (i.e. events, ticket counts and promotions).

Authentication

The API uses , meaning you will need a username and password to get authorized.

As each customer in Pims has its own domain (e.g. caramba.pims.io, gdp.pims.io...), each credentials will be valid for one domain/customer only. If you need dedicated credentials for one domain, please contact us. (In any case, we will need an explicit agreement from the customer before we create these credentials.)

To make your life easy, you can try all endpoints with the public credentials below, pointing to our [demo domain](https://demo.pims.io):
  • Base path: `https://demo.pims.io/api`
  • Username: `demo`
  • Password: `q83792db2GCvgYVdKpU3yG3R`

Response format

The API returns JSON and matches the . The Content-Type of each response will be application/hal+json, unless an error occurs.

Please note that this documentation describes all responses “as if” they were plain JSON. The specificities of HAL are ignored on purpose, in order to remain compact and avoid repetition.

So when you read in the doc:

... you'll get in the Real World®:

Errors

Errors return JSON too and tries to match the . If it does not match this spec, that's either a bug or a compatibility issue. Please contact us to solve the problem.

The Content-Type of errors will be application/problem+json. The content will match the following JSON:

json
{	"type": "https://tools.ietf.org/html/rfc2616#section-10",    "title": "Not Found",	"status": 404,    "detail": "Entity not found"}

Versioning

The API is fully versionned, using an URL-versioning scheme: https://demo.pims.io/api/v1/events, https://demo.pims.io/api/v2/events,...

The version part of the URL is optional, and will be completed with the last stable version if omitted.

Pagination

All responses corresponding to a collection of resources (e.g. /venues or /series/:id/events) are paginated. When so, you will only get the first 25 resources you asked for.

If you need to get more resources in one call, you can use the page_size query parameter. E.g. /venues?page_size=50 to get the 50 first venues.

Also note that with HAL, the navigation in paginated responses is a piece of cake, as you can see below:

json
{	"_links": {		"self": {			"href": "https://demo.pims.io/api/v1/events?page=1"		},		"first": {			"href": "https://demo.pims.io/api/v1/events"		},		"last": {			"href": "https://demo.pims.io/api/v1/events?page=14"		},		"next": {			"href": "https://demo.pims.io/api/v1/events?page=2"		}	},	"_embedded": { 		... // data content goes here	},	"page_count": 14,	"page_size": 25,	"total_items": 331,	"page": 1}

Filtering and sorting

Every textual filter (e.g. /events?label=U2) and/or sort (e.g. /events?sort=label) performed with the API uses UTF8_UNICODE_CI collation, meaning it is:

  • Case insensitive: “Chloé” will be considered the same as “CHLOÉ”;
  • Diacritic insensitive: “Chloé” will be considered the same as “Chloe”.

When performing a sort, it will always be ascending by default. To make it descending, just use a minus sign (-) in front of the parameter value (e.g. /events?sort=-label).

I18n

In responses, some labels can be translated (e.g. promotion types, event input types, etc.). These translatable labels are clearly indicated in the documentation below.

By default, they will be displayed in English, but you can change this behaviour via the Accept-Language header. E.g., use fr as a value for French.

PHP SDK

We provide a simple yet convenient SDK for the PHP language, see .

And now?

Generaly, you will start by . An event can be anything that occurs in one venue at one given date and time: a concert, a play, a match, a conference, etc. Additionnally, you can explore the : a series is just a group of events (e.g. a tour or a festival).

Once you retrieved the events you were interested in, you can look for the sales (ticket counts):

  • Get a quick overview with
  • Or get a full insight by calling these endpoints:

Eventually, you may also want to fetch the . A promotion can be anything meant to leverage the sales: ads, marketing campaigns, buzz or news around the event, etc. A promotion can be linked to any combination of events and/or series._

Homepage
https://api.apis.guru/v2/specs/pims.io/1.0.json
Provider
pims.io
OpenAPI version
2.0
Spec (JSON)
https://api.apis.guru/v2/specs/pims.io/1.0/swagger.json
Spec (YAML)
https://api.apis.guru/v2/specs/pims.io/1.0/swagger.yaml

Tool extraction failed: Only OpenAPI 3.x documents are supported. Swagger 2.x documents should be converted first..