Cariqa Billing Details API

The Billing Details API from Cariqa — 1 operation(s) for billing details.

Operations 2

GET /api/v1/users/{user_id}/billing-details/ Get Billing Details #
PUT /api/v1/users/{user_id}/billing-details/ Update Billing Details #

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/cariqa-billing-details-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

cariqa-billing-details-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cariqa Connect Billing Details API
  version: 1.0.0 (v1)
  description: OPENAPI schema of the Cariqa Connect API
servers:
- url: https://connect.cariqa.com
  description: Connect
- url: https://dev.connect.cariqa.com
  description: Connect Playground
tags:
- name: Billing Details
paths:
  /api/v1/users/{user_id}/billing-details/:
    get:
      operationId: users_billing_details_retrieve
      description: Retrieve billing details of the user
      summary: Get Billing Details
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
        required: true
      tags:
      - Billing Details
      security:
      - BearerAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectAPIBillingDetails'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: ''
    put:
      operationId: users_billing_details_update
      description: Update billing details of the user
      summary: Update Billing Details
      parameters:
      - in: path
        name: user_id
        schema:
          type: string
        required: true
      tags:
      - Billing Details
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectAPIBillingDetails'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ConnectAPIBillingDetails'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ConnectAPIBillingDetails'
        required: true
      security:
      - BearerAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectAPIBillingDetails'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetail'
          description: ''
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: ''
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: ''
components:
  schemas:
    ErrorTypeEnum:
      enum:
      - validation_error
      - payment_method_error
      - payment_error
      - temporary_locked
      - already_charging
      - already_stopped
      - station_availability_issue
      - billing_data_required
      - charging_provider_error
      - unexpected_error
      - pre_authorization_failed
      type: string
      description: '* `validation_error` - validation_error

        * `payment_method_error` - payment_method_error

        * `payment_error` - payment_error

        * `temporary_locked` - temporary_locked

        * `already_charging` - already_charging

        * `already_stopped` - already_stopped

        * `station_availability_issue` - station_availability_issue

        * `billing_data_required` - billing_data_required

        * `charging_provider_error` - charging_provider_error

        * `unexpected_error` - unexpected_error

        * `pre_authorization_failed` - pre_authorization_failed'
    ConnectAPIBillingDetails:
      type: object
      description: 'Serializer which is used to serialize data with the possible business

        details if exist'
      properties:
        country:
          type:
          - string
          - 'null'
          maxLength: 150
        city:
          type:
          - string
          - 'null'
          maxLength: 50
        tax_id:
          type:
          - string
          - 'null'
          maxLength: 30
        account_type:
          $ref: '#/components/schemas/AccountTypeEnum'
        company_name:
          type:
          - string
          - 'null'
        vat_id:
          type:
          - string
          - 'null'
        line1:
          type: string
        postal_code:
          type: string
        first_name:
          type:
          - string
          - 'null'
          maxLength: 150
        last_name:
          type:
          - string
          - 'null'
          maxLength: 150
      required:
      - line1
      - postal_code
    Detail:
      type: object
      description: 400 status error message response serializer.
      properties:
        detail:
          type: string
      required:
      - detail
    ErrorDetail:
      type: object
      properties:
        detail:
          type: string
        error:
          $ref: '#/components/schemas/Error'
      required:
      - detail
      - error
    AccountTypeEnum:
      enum:
      - personal
      - business
      type: string
      description: '* `personal` - personal

        * `business` - business'
    Error:
      type: object
      properties:
        type:
          allOf:
          - $ref: '#/components/schemas/ErrorTypeEnum'
          description: 'Type of the error


            * `validation_error` - validation_error

            * `payment_method_error` - payment_method_error

            * `payment_error` - payment_error

            * `temporary_locked` - temporary_locked

            * `already_charging` - already_charging

            * `already_stopped` - already_stopped

            * `station_availability_issue` - station_availability_issue

            * `billing_data_required` - billing_data_required

            * `charging_provider_error` - charging_provider_error

            * `unexpected_error` - unexpected_error

            * `pre_authorization_failed` - pre_authorization_failed'
        details:
          type: string
          description: Additional details about the error
        payment_intent_client_secret:
          type: string
          description: Client secret of the payment intent that failed
      required:
      - details
      - type
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT Authorization header using the Bearer scheme.