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

# Move

> Move a person to a specified contact.

You must specify the date after which activities will be moved along with the person.



## OpenAPI

````yaml /openapi/rest/openapi-v3-Person.json post /api/v1/Person/{personId}/MoveTo/{destinationContactId}
openapi: 3.0.0
info:
  version: v1-REST
  title: SuperOffice REST API v1
  description: SuperOffice REST API - Person
  contact:
    name: SuperOffice DevNet
    url: https://docs.superoffice.com/en/api/index.html
    email: sdk@superoffice.com
servers:
  - url: http://localhost:56350
  - url: https://localhost:56350
security: []
tags: []
externalDocs:
  description: >-
    The SuperOffice DevNet Community has more documentation, examples, and
    discussion forums.
  url: https://community.superoffice.com/en/developer/
paths:
  /api/v1/Person/{personId}/MoveTo/{destinationContactId}:
    post:
      tags:
        - Person
      summary: Move
      description: >-
        Move a person to a specified contact.


        You must specify the date after which activities will be moved along
        with the person.
      operationId: v1PersonEntity_Move
      parameters:
        - name: personId
          in: path
          description: The identifier for the person
          required: true
          schema:
            type: integer
            format: int32
        - name: destinationContactId
          in: path
          description: The identifier for the contact which the person will be moved to
          required: true
          schema:
            type: integer
            format: int32
        - name: moveAfterDate
          in: query
          description: >-
            Move activites after this date. Activities before this date are left
            alone.
          required: true
          schema:
            type: string
            format: date-time
        - name: SO-AppToken
          in: header
          description: >-
            The application token that identifies the partner app. Used when
            calling Online WebAPI from a server.
          required: false
          schema:
            type: string
      responses:
        '204':
          description: No Content
      security:
        - SuperOffice_Password: []
          SuperId_Authentication: []
components: {}

````

## Related topics

- [Move](/en/api/reference/restful/agent/person_agent/move.md)
- [Move Extended](/en/api/reference/restful/agent/appointment_agent/move-extended.md)
- [Move With Email](/en/api/reference/restful/agent/appointment_agent/move-with-email.md)
- [Move To Folder](/en/api/reference/restful/agent/email_agent/move-to-folder.md)
- [Move a follow-up](/en/diary/learn/move-follow-up.md)
