> ## Documentation Index
> Fetch the complete documentation index at: https://developers.podero.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send a raw stop-charging command to an EV charger (wallbox)

> Push a raw stop command onto the wire of the EV charger identified by the given UUID.

The mirror of `POST /start_charging`. On an OCPP charger it pauses the transaction at
0 A under the same 4-hour fail-open lease, so the charger returns to its own configured
behaviour when nothing renews the pause.

It is refused while a charging session steers the charger, because that session
re-asserts its own profile within one steering poll and would undo the pause:

- **Something is steering** (a wallbox solar/price session, or the owner's EV charging
  through this charger): 409 with `reason=steering_active` and `steerer` naming which
  one. Turn optimization off for the steering device to stop the charge for good.
- **Nothing is steering**: 204, and the command reaches the charger.

Returns 501 when the charger's brand has no remote stop.



## OpenAPI

````yaml https://app.podero.com/api/partners/v2.0/openapi.json post /api/partners/v2.0/org/{org_id}/users/{user_id}/wallboxes/{wallbox_id}/stop_charging
openapi: 3.1.0
info:
  title: Podero Partner API
  version: '2.0'
  description: >-
    This API provides a unified interaction point for Podero's partner
    companies.


    The goal of this API is to give partners easily integratable endpoints that
    don't require extensive software

    development. For this reason, the endpoints focus around user and device
    management, setting of preferences

    and high level device controls.


    While direct control of devices is implemented for special use cases such as
    pause power, we abstract away low level

    direct device steering so developers and partners can focus on delivering
    maximum value to end users.
  termsOfService: https://www.podero.com/terms-and-conditions
servers: []
security: []
paths:
  /api/partners/v2.0/org/{org_id}/users/{user_id}/wallboxes/{wallbox_id}/stop_charging:
    post:
      tags:
        - User Wallboxes
      summary: Send a raw stop-charging command to an EV charger (wallbox)
      description: >-
        Push a raw stop command onto the wire of the EV charger identified by
        the given UUID.


        The mirror of `POST /start_charging`. On an OCPP charger it pauses the
        transaction at

        0 A under the same 4-hour fail-open lease, so the charger returns to its
        own configured

        behaviour when nothing renews the pause.


        It is refused while a charging session steers the charger, because that
        session

        re-asserts its own profile within one steering poll and would undo the
        pause:


        - **Something is steering** (a wallbox solar/price session, or the
        owner's EV charging
          through this charger): 409 with `reason=steering_active` and `steerer` naming which
          one. Turn optimization off for the steering device to stop the charge for good.
        - **Nothing is steering**: 204, and the command reaches the charger.


        Returns 501 when the charger's brand has no remote stop.
      operationId: >-
        integrations_api_api_v2_organizations_users_wallboxes_router_stop_charging
      parameters:
        - in: path
          name: org_id
          schema:
            description: The organization ID
            format: uuid
            title: Org Id
            type: string
          required: true
          description: The organization ID
        - in: path
          name: user_id
          schema:
            description: The user ID whom the wallbox belongs to
            format: uuid
            title: User Id
            type: string
          required: true
          description: The user ID whom the wallbox belongs to
        - in: path
          name: wallbox_id
          schema:
            description: The EV charger (wallbox) UUID
            format: uuid
            title: Wallbox Id
            type: string
          required: true
          description: The EV charger (wallbox) UUID
      responses:
        '204':
          description: No Content
        '409':
          description: Conflict
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
        '501':
          description: Not Implemented
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
      security:
        - OAuth2: []
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        password:
          tokenUrl: /api/partners/v2.0/auth/token
          scopes: {}
        clientCredentials:
          tokenUrl: /api/partners/v2.0/auth/token
          scopes: {}

````