Skip to main content
POST
/
api
/
Users
/
records
/
transfer
Create records transfer request.
curl --request POST \
  --url https://api.example.com/api/Users/records/transfer \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "customerId": 123,
  "creatorId": 123,
  "sources": [
    {
      "id": 123,
      "name": "<string>"
    }
  ],
  "destination": {
    "id": 123,
    "name": "<string>"
  },
  "categories": [
    "<string>"
  ]
}
'
{
  "openActivities": 123,
  "openJobs": 123,
  "clients": 123,
  "contacts": 123
}

Body

application/json
id
string | null
customerId
integer<int32>
creatorId
integer<int32>
sources
object[] | null
destination
object
categories
string[] | null

Response

200 - application/json

OK

openActivities
integer<int32>
openJobs
integer<int32>
clients
integer<int32>
contacts
integer<int32>