---
title: "Send to Orthanc peer"
method: POST
path: "/peers/{id}/store"
tags: ["Networking"]
---

# Send to Orthanc peer

`POST /peers/{id}/store`

Send DICOM resources stored locally to some remote Orthanc peer whose identifier is provided in the URL: https://book.orthanc-server.com/users/rest.html#sending-one-resource

## Path parameters

- `id` string, required

## Request body

- object
  - `Asynchronous` boolean — If `true`, run the job in asynchronous mode, which means that the REST API call will immediately return, reporting the identifier of a job. Prefer this flavor wherever possible.
  - `Compress` boolean — Whether to compress the DICOM instances using gzip before the actual sending
  - `Permissive` boolean — If `true`, ignore errors during the individual steps of the job.
  - `Priority` number — In asynchronous mode, the priority of the job. The lower the value, the higher the priority.
  - `Resources` string[] — List of the Orthanc identifiers of all the DICOM resources to be sent
  - `Synchronous` boolean — If `true`, run the job in synchronous mode, which means that the HTTP answer will directly contain the result of the job. This is the default, easy behavior, but it is *not* desirable for long jobs, as it might lead to network timeouts.
  - `Transcode` string — Transcode to the provided DICOM transfer syntax before the actual sending

## Response `200`

- object
  - `ID` string — In asynchronous mode, identifier of the job
  - `Path` string — In asynchronous mode, path to access the job in the REST API

---

[API](https://skmtc.net/orthancserver/apis/orthanc-server.md) · [All operations](https://skmtc.net/orthancserver/apis/orthanc-server/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/orthancserver/orthanc-server/versions/af646f6f871b/schema)
