---
title: "Create Order"
method: POST
path: "/publications/order"
tags: ["Publications"]
---

# Create Order

`POST /publications/order`

### Create an order for an publication based on citation information.
Example with the minimum information needed for an order when you have a DOI:
```
{
  "userInfo": {
    "userName": "demo.trial@articlegalaxy.com",
    "email": "demo.trial@articlegalaxy.com",
    "firstName": "Demo",
    "lastName": "Trial"
  },
  "deliverToEmail": "demo.trial@articlegalaxy.com",
  "citation": {
    "doi": "10.1007/s00454-016-9824-0"
  },
  "intendedUseId": 2,
  "orderType": "RequestPDF",
  "customerReferences": {}
}
```

## Request body

- ArticleGalaxyOrder
  - `userInfo` UserInfo
    - `userId` integer, nullable
    - `userName` string, nullable
    - `email` string, nullable
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `billingReference` string, nullable
  - `deliverToEmail` string, nullable
  - `citation` Citation
    - `doi` string, nullable
    - `pubmedId` string, nullable
    - `standardNumber` string, nullable
    - `standardNumber2` string, nullable
    - `publicationName` string, nullable
    - `documentTitle` string, nullable
    - `publicationYear` integer, nullable
    - `volume` string, nullable
    - `issue` string, nullable
    - `firstPage` string, nullable
    - `lastPage` string, nullable
    - `pages` string, nullable
    - `firstAuthor` string, nullable
    - `authors` string[], nullable
    - `abstract` string, nullable
    - `pageCount` integer, nullable
    - `customRequestId` string, nullable
    - `citationType` 'Journal' | 'Book'
  - `intendedUseId` integer, nullable
  - `orderType` 'RequestPDF' | 'RequestPDFAndGenAI' | 'RequestGenAI' | 'RequestRental'
  - `customerReferences` object, nullable

## Response `200`

Order created successfully

- OrderCreatedResponse
  - `orderId` integer

---

[API](https://skmtc.net/researchsolutions/apis/article-galaxy-api.md) · [All operations](https://skmtc.net/researchsolutions/apis/article-galaxy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/researchsolutions/article-galaxy-api/revisions/70fb92d278f5/schema)
