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

# Delete a SIPL person

> Remove or withdraw a person by your clientPersonId.

<Note>
  If the person has not been reported yet, they are simply removed. If they have, their entry is withdrawn at the tax authority with every account it carried.
</Note>


## OpenAPI

````yaml delete /reports/mai55/v1/submissions/{submissionId}/sipl/persons/{clientPersonId}
openapi: 3.1.0
info:
  title: MAI55 REST API
  description: >
    <p>REST API for reporting MAI55 data to the Lithuanian State Tax
    Inspectorate. Open a submission for a

    reporting year, push the reportable persons under its id, then submit it to
    the tax authority.</p>


    <p>A submission carries exactly one sub-report, chosen with
    <code>type</code>: <strong>SIPL</strong> (account

    incomes), <strong>SLIK</strong> (account balances) or <strong>SKIS</strong>
    (outstanding debt

    agreements).</p>
  version: 0.0.1
servers:
  - url: https://api.rrc.dev.finventi.com
    description: Development
  - url: https://api.rrc.finventi.com
    description: Production
security:
  - bearer-jwt: []
tags:
  - name: Submissions
  - name: SLIK
  - name: SKIS
  - name: SIPL
paths:
  /reports/mai55/v1/submissions/{submissionId}/sipl/persons/{clientPersonId}:
    delete:
      tags:
        - SIPL
      summary: Delete a SIPL person
      description: >-
        Deletes a person by your `clientPersonId`. In a submission the person is
        removed outright, since nothing has been reported yet. In a correction
        their entry is withdrawn at the tax authority, with every account it
        carried; a person it has never seen is rejected.
      operationId: deleteSiplPerson
      parameters:
        - name: submissionId
          in: path
          required: true
          schema:
            type: string
        - name: clientPersonId
          in: path
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Person deleted
        '404':
          description: Nothing reported for this person to delete
components:
  securitySchemes:
    bearer-jwt:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: >-
            https://auth.sandbox.finventi.com/realms/sti-connector/protocol/openid-connect/token
          scopes: {}

````