Conga Locations API

Catalog APIs for Locations

Operations 1

GET /locations Get account locations

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/conga-locations-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

conga-locations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Catalog Locations API
  version: 1.0.0
  description: Catalog APIs for Locations
servers:
- url: https://rls.congacloud.com/api/catalog/v1
security:
- Bearer: []
tags:
- name: Locations
  description: Catalog APIs for Locations
paths:
  /locations:
    get:
      tags:
      - Locations
      summary: Get account locations
      parameters:
      - name: priceListId
        in: header
        description: A unique identifier of the price list.
        schema:
          type: string
      - name: cartId
        in: header
        description: The unique identifier for a cart.
        schema:
          type: string
      - name: page
        in: query
        description: Enter the search result page number to view the result from.
        schema:
          type: integer
          format: int32
          default: 1
      - name: limit
        in: query
        description: Contains the number of records to display on each page. By default, the API displays 50 records per page. A maximum of 500 records can be displayed on each page.
        schema:
          type: integer
          format: int32
          default: 500
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Conga.Revenue.Entities.Platform.AccountLocation'
components:
  schemas:
    Conga.Revenue.Entities.Platform.AccountLocation:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        createdBy:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        createdDate:
          type: string
          format: date-time
        modifiedBy:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        modifiedDate:
          type: string
          format: date-time
        externalId:
          type:
          - string
          - 'null'
        eTag:
          type:
          - string
          - 'null'
        account:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        billingPreference:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        creditMemoEmailTemplate:
          type:
          - string
          - 'null'
        defaultCreditMemoTemplate:
          type:
          - string
          - 'null'
        defaultInvoiceStatementTemplate:
          type:
          - string
          - 'null'
        defaultInvoiceTemplate:
          type:
          - string
          - 'null'
        invoiceEmailTemplate:
          type:
          - string
          - 'null'
        invoiceSeparately:
          type:
          - boolean
          - 'null'
        isDefault:
          type:
          - boolean
          - 'null'
        location:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        paymentTerm:
          $ref: '#/components/schemas/Conga.Platform.Common.Models.LookupObject'
        taxExempt:
          type:
          - boolean
          - 'null'
        taxExemptStatus:
          type:
          - string
          - 'null'
      additionalProperties: {}
    Conga.Platform.Common.Models.LookupObject:
      type: object
      properties:
        id:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Please insert JWT with Bearer into field
      name: Authorization
      in: header