Lists all centers that the caller has permission to view.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRConsAPI | SRConsAPI | GET, POST | Server. |
If the Luminate Online site is configured for Multi-Center mode, this method returns the list of Centers that the caller can access. Note that this may not include all centers defined for a particular Luminate Online site, and may differ from one caller to another depending upon the caller's role and permissions.
The method supports paging of results.
If your Luminate Online site is not configured for Multi-Center, this method returns an empty list.
See topic Common Parameters.
Optional. The requested page number (used with "list_page_size"). The first page (default) is zero. Only one of "list_record_offset" or "list_page_offset" should be used in a request.
Type xsd:integer.
Optional. The number of results in each page (used with "list_record_offset" or "list_page_offset").
Type xsd:integer.
Default is 25.
Optional. The requested initial record number (used with "list_page_size"). The first record (default) is zero. Only one of "list_record_offset" or "list_page_offset" should be used in a request.
Type xsd:integer.
See topic Common Parameters.
Optional. The requested page number (used with "list_page_size"). The first page (default) is zero. Only one of "list_record_offset" or "list_page_offset" should be used in a request.
Type xsd:integer.
Optional. The number of results in each page (used with "list_record_offset" or "list_page_offset").
Type xsd:integer.
Default is 25.
Optional. The requested initial record number (used with "list_page_size"). The first record (default) is zero. Only one of "list_record_offset" or "list_page_offset" should be used in a request.
Type xsd:integer.
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?> <listCentersResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <center> <id>1</id> <label>Center Name</label> <description>Center Description</description> <home_page>http://www.your_org.org/site/PageServer?pagename=center_home</home_page> <not_found_page>http://www.your_org.org/site/PageServer?pagename=center_not_found</not_found_page> </center> </listCentersResponse>JSON response
{"listCentersResponse":{"center":{"id":"1","description":"Center Description","label":"Center Name","home_page":"http://www.your_org.org/site/PageServer?pagename=center_home","not_found_page":"http://www.your_org.org/site/PageServer?pagename=center_not_found"}}}