v2

latestOpenAPI 3.0.3Apache 2.02026-07-31158109678.6 KB
articles

Replace article authors

Associate new authors with the article. This will remove all already associated authors and add these new ones

put/account/articles/{article_id}/authors

Path parameters

article_idinteger required

Article unique identifier

Request body

authorsobject[] required

List of authors to be associated with the article. The list can contain the following fields: id, name, first_name, last_name, email, orcid_id. If an id is supplied, it will take priority and everything else will be ignored. For adding more authors use the specific authors endpoint.

Example request

{
  "authors": [
    {
      "id": 12121
    },
    {
      "id": 34345
    },
    {
      "name": "John Doe"
    }
  ]
}

Response

Reset Content