Download OpenAPI specification:Download
This document describes how to interact with the REST API in Open Journal Systems. It is a technical document intended for software developers who wish to build applications to interact with OJS. This document only describes the REST API for OJS. However, similar REST APIs exist for Open Monograph Press and Open Preprint Systems.
View the Developer Documentation Hub to view all documentation for these applications.
Read the 3.4 Release Notebook to learn about all the changes introduced in 3.4.
The following changes were made to the REST API.
apiToken
as a query parameter is deprecated. Use it in the Authorization
header instead. See the "Authentication" section below.fullTitle
, title
, and subtitle
properties.submissionProgress
. It is now a string, not an integer.The following new endpoints have been added.
Use the following to access the /submissions
endpoint when an application is hosted at https://example.com/
.
https://example.com/api/v1/submissions
A multi-journal OJS installation must access endpoints from each journal's URL.
https://example.com/journalpath/api/v1/submissions
Installations that do not use mod_rewrite
must include index.php
.
https://example.com/index.php/journalpath/api/v1/submissions
Administrators can access some endpoints, such as /contexts
, at a site-wide endpoint that spans all journals.
https://example.com/index/api/v1/contexts
Only authenticated users can access the REST API endpoints. Authentication can be done with cookies or by using the API token.
Cookie-based authentication can be used when you are making a request from the same domain name as the application. When a request is made from the user's browser, the browser will send the cookies to the server.
A CSRF token must be sent with every POST
, PUT
or DELETE
request when using cookie-based authentication. Read more about the CSRF Token.
The
apiToken
will not validate if theapi_secret_key
setting has not been set in the application'sconfig.inc.php
file.
Your API token can be found by going to User Profile > API Key in the application. Add the API Token in an Authorization
header with every request made to the API.
Authorization: Bearer eyJ0e...6vJU
Most API endpoints follow the same convention to return subsequent pages of results. The following would return the second "page" of results, if each page contained 30 results.
https://example.com/api/v1/submissions?count=30offset=30
All PKP applications are multilingual. Multilingual fields will be provided as a JSON object with keys specifying the locale codes. The following response shows the title
property of a publication in English and Canadian French.
{
"title": {
"en_US": "Young people from an immigrant background and their choice of post-secondary orientation in Montreal",
"fr_CA": "Jeunes issus de l’immigration et choix d’orientation au postsecondaire à Montréal"
},
...
}
This is the same even when an installation only uses a single language.
{
"title": {
"fr_CA": "Jeunes issus de l’immigration et choix d’orientation au postsecondaire à Montréal"
},
...
}
When sending POST
or PUT
requests, the REST API will expect the data it receives to be passed in the same format.
Some responses will include a _href
property. The value of this property will be a URL to the full version of this object in the REST API.
{
"_href": "http://example.com/api/v1/submissions/219"
...
}
Files can be uploaded by sending a POST
request to the /temporaryFiles
endpoint. It will return a file ID which can be used in subsequent requests. Let's look at an example.
To upload a logo for a context (journal, press, or preprint server), upload the image by sending a POST
request to /temporaryFiles
. A successful upload will generate the following response:
{
id: 123
}
To save the logo to the context, send a PUT
request to /contexts/1
:
{
pageHeaderLogoImage: {
temporaryFileId: 123,
altText: "Logo for the Journal of Public Knowledge"
}
}
The file will be moved from the temporary directory to its public location, overwriting any existing logo.
Temporary files can only be managed by the the user who uploaded the file. If a user passes a temporaryFileId
for a file they did not upload themselves, they will receive an authorization error.
See /submissions/{submissionId}
for notes about submission properties.
assignedTo | Array of integers Filter results by those assigned to one or more user ids. All users except managers and admins are automatically restricted to assigned submissions and do not need to pass this parameter. |
categoryIds | Array of integers Filter results by those assigned to one of these categories. |
count | integer Default: 20 How many results to return in a single request. Max is |
daysInactive | integer Filter the results by those which have not had activity for the last X days. |
isIncomplete | boolean Filter the results by those for which the author has not yet completed the submission process. |
isOverdue | boolean Filter the results by those for which a reviewer has missed a deadline. |
issueIds | Array of integers Filter the results by those with one or more publications assigned to an issue. |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. A |
orderBy | string Default: "dateSubmitted" Enum: "datePublished" "dateSubmitted" "lastActivity" "lastModified" "sequence" "title" Order the results returned. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter the results by a search phrase matched against the title and authors. |
sectionIds | Array of integers Filter the results by those with one or more publications assigned to a section. |
stageIds | Array of integers Items Enum: 1 3 4 5 Filter results by those currently in one of these workflow stages. Expects one of the |
status | Array of integers Items Enum: 1 3 4 5 Filter results by one or more submission statuses. Must match the value of one of the |
{- "itemsMax": 0,
- "items": [
- {
- "_href": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": null,
- "fileId": null,
- "mimetype": null,
- "path": null,
- "url": null
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "stageId": 1,
- "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
]
}
Details about the submission that should be created.
commentsForTheEditors | string Optional. Comments from the submitting author to the editors. This is only available for submissions that have not yet been submitted. Once submitted, the message is converted to a discussion and you can not read or write to this property. |
locale | string The primary language of this submission. |
sectionId | integer The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. After the submission is created, edit the publication to change the |
userGroupId | integer Optional. The submitting user will be assigned to the submission in the user group under which they submit. Leave this empty to have the user automatically assigned as an author, when an author user group allows self-registration. Changing this property will have no effect after a submission is submitted. |
{- "commentsForTheEditors": "string",
- "locale": "string",
- "sectionId": 0,
- "userGroupId": 0
}
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
abstract
includes HTML markup.pages
is usually a string
. But in some cases it may return an array of arrays. Each array contains two items: the start and end page. Example: [[25, 31], [45, 62]]
.submissionProgress
will be > 0 if the submission is incomplete.stages
, reviewRounds
and reviewAssignments
should only be returned for participants assigned to the submission.reviewAssignments
should only expose user-identifying information for editors and admins.submissionId required | integer Submission ID |
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
submissionId required | integer Submission ID |
The details about the submission that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
commentsForTheEditors | string Optional. Comments from the submitting author to the editors. This is only available for submissions that have not yet been submitted. Once submitted, the message is converted to a discussion and you can not read or write to this property. |
locale | string The primary language of this submission. |
sectionId | integer The section this submission should be assigned to. This can only be passed when creating a new submission and the data is assigned to the first publication. After the submission is created, edit the publication to change the |
userGroupId | integer Optional. The submitting user will be assigned to the submission in the user group under which they submit. Leave this empty to have the user automatically assigned as an author, when an author user group allows self-registration. Changing this property will have no effect after a submission is submitted. |
{- "commentsForTheEditors": "string",
- "locale": "string",
- "sectionId": 0,
- "userGroupId": 0
}
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
Only journal managers and subeditors can make a request to this endpoint.
submissionId required | integer Submission ID |
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
Sets the current step of the submission in the submission wizard and sends an email to the submitting author with a link to resume their submission. This API endpoint does not save any data about the submission. Use the regular PUT
endpoints to save data for submissions, publications, files, and authors.
submissionId required | integer Submission ID |
step | string Enum: "details" "files" "contributors" "editors" "review" The step of the submission wizard to open when the author resumes their submission. |
{- "step": "details"
}
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
Submits a submission for editorial review. Any automated editorial assignments, comments for the editor, or other submission events will be triggered.
submissionId required | integer Submission ID |
_validateOnly | boolean When |
confirmCopyright | boolean Pass |
{- "_validateOnly": true,
- "confirmCopyright": true
}
{- "_href": "string",
- "commentsForTheEditors": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "reviewAssignments": [
- {
- "id": 0,
- "isCurrentUserAssigned": 0,
- "status": 0,
- "statusLabel": 0,
- "dateDue": 0,
- "dateResponseDue": 0,
- "round": 0,
- "reviewRoundId": 0
}
], - "reviewRounds": [
- {
- "id": 0,
- "round": 0,
- "stageId": 0,
- "status": "string",
- "statusId": 0
}
], - "stageId": 1,
- "stages": [
- {
- "id": 0,
- "label": "string",
- "isActiveStage": true,
- "currentUserAssignedRoles": [
- 0
], - "status": "string",
- "statusId": 0,
- "files": {
- "count": 0
}, - "queries": [
- null
]
}
], - "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
Use these endpoints to get or record editorial decisions on a submission. Editorial decisions include actions like accepting or declining a submission, sending a submission to the next stage, and requesting revisions. Editorial decisions can not be edited or deleted after they are recorded. Learn more about Decisions.
Get the editorial decisions that have been recorded for this submission.
submissionId required | integer Submission ID |
[- {
- "dateDecided": "string",
- "decision": 0,
- "description": "string",
- "editorId": 0,
- "id": 0,
- "label": "string",
- "reviewRoundId": 0,
- "round": 0,
- "stageId": 0,
- "submissionId": 0
}
]
Record a new editorial decision for this submission. This endpoint is configured to support customizable actions when recording a decision. Each decision supports pre-defined actions, but plugins can extend each decision to take additional actions or create new decisions.
Most of the built-in decisions use one or more actions. View the "Request samples" for this endpoint to see which decisions use which actions. Most decisions use one or more of the following types:
Action | Description |
---|---|
Details about the email message, recipients and attachments. If the example request body includes an empty recipients array, that means the decision does not allow the recipients to be modified. It is configured to always send to the same recipients. For example, most emails to notify authors will automatically be sent to the assigned authors and co-authors, depending on how the journal has configured their email notification settings. |
|
Form | A form payload that includes the action id and any input data from the form. |
A custom decision is not restricted to these types. Any data can be sent through the actions
property and handled on the server. Learn more about Decisions.
submissionId required | integer Submission ID |
actions | Array of objects Optional. A list of actions to be taken with this decision, such as sending an email. Each decision supports different actions. See the request body examples for supported decision actions. |
decision | integer The decision that was made. One of the |
reviewRoundId | integer The unique id of the review round when this decision was taken. Do not include this if the decision is not recorded in a review stage. This is a globally unique id. It does not represent whether the decision was taken in the first or second round of reviews for a submission. See |
round | integer The sequential review round when this decision was taken. For example, the first, second or third round of review for this submission. Do not include this unless using |
{- "decision": 2,
- "reviewRound": 123,
- "round": 1,
- "actions": [
- {
- "attachments": [
- {
- "name": "example-upload.pdf",
- "temporaryFileId": 1,
- "documentType": "pdf"
}, - {
- "name": "example-submission-file.pdf",
- "submissionFileId": 1,
- "documentType": "pdf"
}, - {
- "name": "example-library-file.pdf",
- "libraryFileId": 1,
- "documentType": "pdf"
}
], - "bcc": "example@pkp.sfu.ca",
- "cc": "example@pkp.sfu.ca",
- "id": "notifyAuthors",
- "locale": "en",
- "recipients": [ ],
- "subject": "Example email subject",
- "body": "<p>Example email body.</p>"
}, - {
- "attachments": [
- {
- "name": "example-upload.pdf",
- "temporaryFileId": 1,
- "documentType": "pdf"
}, - {
- "name": "example-submission-file.pdf",
- "submissionFileId": 1,
- "documentType": "pdf"
}, - {
- "name": "example-library-file.pdf",
- "libraryFileId": 1,
- "documentType": "pdf"
}
], - "bcc": "example@pkp.sfu.ca",
- "cc": "example@pkp.sfu.ca",
- "id": "notifyReviewers",
- "locale": "en",
- "recipients": [
- 1,
- 2
], - "subject": "Example email subject",
- "body": "<p>Example email body.</p>"
}, - {
- "requestPayment": true,
- "id": "payment"
}
]
}
{- "dateDecided": "string",
- "decision": 0,
- "description": "string",
- "editorId": 0,
- "id": 0,
- "label": "string",
- "reviewRoundId": 0,
- "round": 0,
- "stageId": 0,
- "submissionId": 0
}
This will return all of a submission's files that the user is allowed to access, except review attachments and discussion files. A user is allowed to access different file stages depending on their stage assignment.
SUBMISSION_FILE_COPYEDIT
and SUBMISSION_FILE_FINAL
.SUBMISSION_FILE_SUBMISSION
, SUBMISSION_FILE_REVIEW_REVISION
, SUBMISSION_FILE_COPYEDIT
and SUBMISSION_FILE_PROOF
file stages. For example, an author with access to the copyediting stage will have access to SUBMISSION_FILE_COPYEDIT
(copyedited files) but not SUBMISSION_FILE_FINAL
(draft files).submissionId required | integer Submission ID |
fileStages | Array of integers Filter results by those submission files assigned to one or more file stage. One of the |
reviewRoundIds | Array of integers Filter results by those submission files assigned to one or more review rounds. |
[- {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
]
A user is allowed to upload to different file stages depending on their stage assignments. See the description for GET /submission/{submissionId}/files
above. Once a submission has been completed, authors are no longer allowed to upload to SUBMISSION_FILE_SUBMISSION
. Authors are not allowed to upload to SUBMISSION_FILE_REVIEW_REVISION
until revisions have been requested.
Details about the submission file that should be created.
assocId | integer Used with |
assocType | integer Enum: 515 517 520 521 523 Used with |
caption | string A caption for this file. Used with artwork such as images. |
copyrightOwner | string The copyright owner of this file. Used with artwork such as images. |
createdAt | string The date this submission file object was created in the system. Set automatically by the software. |
creator | object (LocaleObject) Key/value pairs containing data stored by locale key. |
credit | string An attribution for this file, such as a photographer's name. Used with artwork such as images. |
dateCreated | string Public metadata about when this content was created. Used with supplementary files. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
file | string <binary> |
fileId | integer |
fileStage | integer Enum: 2 3 4 5 6 7 8 9 10 11 13 15 17 18 |
genreId | integer The genre id of this file |
language | string The language of this file if it contains text. Used with supplementary files. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publisher | object (LocaleObject) Key/value pairs containing data stored by locale key. |
source | object (LocaleObject) Key/value pairs containing data stored by locale key. |
sourceSubmissionFileId | integer When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: |
sponsor | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subject | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionId | integer |
terms | string Licensing terms for this file. Used with artwork such as images. |
updatedAt | string When this object was last updated. |
uploaderUserId | integer |
viewable | boolean |
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
You must pass the correct stageId
when requesting a file.
submissionFileId required | integer Submission File ID |
submissionId required | integer Submission ID |
stageId required | integer The workflow stage id of the requested file. For example, |
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
You must pass the correct stageId
when editing a file.
submissionFileId required | integer Submission File ID |
submissionId required | integer Submission ID |
stageId required | integer The workflow stage id of the file to be edited. For example, |
The details about the submission file that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
assocId | integer Used with |
assocType | integer Enum: 515 517 520 521 523 Used with |
caption | string A caption for this file. Used with artwork such as images. |
copyrightOwner | string The copyright owner of this file. Used with artwork such as images. |
createdAt | string The date this submission file object was created in the system. Set automatically by the software. |
creator | object (LocaleObject) Key/value pairs containing data stored by locale key. |
credit | string An attribution for this file, such as a photographer's name. Used with artwork such as images. |
dateCreated | string Public metadata about when this content was created. Used with supplementary files. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
file | string <binary> |
fileId | integer |
fileStage | integer Enum: 2 3 4 5 6 7 8 9 10 11 13 15 17 18 |
genreId | integer The genre id of this file |
language | string The language of this file if it contains text. Used with supplementary files. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publisher | object (LocaleObject) Key/value pairs containing data stored by locale key. |
source | object (LocaleObject) Key/value pairs containing data stored by locale key. |
sourceSubmissionFileId | integer When a submission file is promoted from one stage to another, this property identifies the source file from which this file was promoted. Default: |
sponsor | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subject | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionId | integer |
terms | string Licensing terms for this file. Used with artwork such as images. |
updatedAt | string When this object was last updated. |
uploaderUserId | integer |
viewable | boolean |
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "file": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "language": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "viewable": true
}
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
You must pass the correct stageId
when deleting a file.
submissionFileId required | integer Submission File ID |
submissionId required | integer Submission ID |
stageId required | integer The workflow stage id of the file to be edited. For example, |
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
Copy a submission file to a new file stage. This is usually used to promote a file from one stage to another. For example, a file in "Revisions" can be promoted to "Files for Copyediting" so that a copyeditor can begin working with it. Learn more about File Stages.
submissionFileId required | integer Submission File ID |
submissionId required | integer Submission ID |
stageId required | integer The workflow stage id of the file to be copied. For example, |
reviewRoundId | integer Optional. The ID of a review round to copy this file to. Only use this when you want to copy a file to a file stage in a particular review round. If omitted, the file will be copied to the latest review round. |
toFileStage required | integer One of the |
{- "reviewRoundId": 0,
- "toFileStage": 0
}
{- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}
Get the participants assigned to a submisssion.
submissionId required | integer Submission ID |
[- {
- "_href": "string",
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disabled": true,
- "email": "string",
- "fullName": "string",
- "gossip": "string",
- "groups": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abbrevLocaleKey": "string",
- "contextId": 0,
- "id": 0,
- "isDefault": true,
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "nameLocaleKey": "string",
- "permitMetadataEdit": true,
- "permitSelfRegistration": true,
- "recommendOnly": true,
- "roleId": 16,
- "showTitle": true
}
], - "id": 0,
- "interests": [
- {
- "id": 0,
- "interest": "string"
}
], - "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "userName": "string"
}
]
Get all participants assigned to a submission for a specific workflow stage, such as the review or copyediting stage.
stageId required | integer Stage ID |
submissionId required | integer Submission ID |
[- {
- "_href": "string",
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disabled": true,
- "email": "string",
- "fullName": "string",
- "gossip": "string",
- "groups": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abbrevLocaleKey": "string",
- "contextId": 0,
- "id": 0,
- "isDefault": true,
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "nameLocaleKey": "string",
- "permitMetadataEdit": true,
- "permitSelfRegistration": true,
- "recommendOnly": true,
- "roleId": 16,
- "showTitle": true
}
], - "id": 0,
- "interests": [
- {
- "id": 0,
- "interest": "string"
}
], - "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "userName": "string"
}
]
[- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
]
Create a new publication for a submission.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
Details about the publication that should be created.
abstract | object (LocaleObject) Key/value pairs containing data stored by locale key. |
accessStatus | integer Default: 0 |
categoryIds | Array of integers |
citationsRaw | string Optional metadata that contains references for works cited in this submission as raw text. |
copyrightHolder | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightYear | integer The copyright year for this publication. |
coverage | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
dataAvailability | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datePublished | string |
disciplines | Array of strings Optional metadata that describes the submission's types of study or branches of knowledge. |
doiId | integer The ID of the DOI to assign to this publication. |
hideAuthor | boolean Default: false Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship. |
issueId | integer |
keywords | Array of strings Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. |
languages | Array of strings Optional metadata that identifies the submission's primary language. |
lastModified | string |
licenseUrl | string A URL to a webpage describing the license terms for this publication. |
pages | string The pages of the issue in which this article appears if it is published in a physical format. |
prefix | object (LocaleObject) Key/value pairs containing data stored by locale key. |
primaryContactId | integer Which |
pub-id::publisher-id | string A unique ID provided by the publisher. It will be used in the publication's URL path instead of the |
rights | object (LocaleObject) Key/value pairs containing data stored by locale key. |
sectionId | integer |
seq | integer Default: 0 |
source | object (LocaleObject) Key/value pairs containing data stored by locale key. |
status | integer Default: 1 Enum: 1 3 4 5 Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the |
subjects | Array of strings Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. |
submissionId | integer |
subtitle | object (LocaleObject) Key/value pairs containing data stored by locale key. |
supportingAgencies | Array of strings Optional metadata that indicates the source of research funding or other institutional support. |
title | object (LocaleObject) Key/value pairs containing data stored by locale key. |
type | object (LocaleObject) Key/value pairs containing data stored by locale key. |
urlPath | string An optional path to use in the URL instead of the ID. |
version | integer The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "categoryIds": [
- 0
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiId": 0,
- "hideAuthor": false,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "version": 0
}
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
The details about the publication that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
abstract | object (LocaleObject) Key/value pairs containing data stored by locale key. |
accessStatus | integer Default: 0 |
categoryIds | Array of integers |
citationsRaw | string Optional metadata that contains references for works cited in this submission as raw text. |
copyrightHolder | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightYear | integer The copyright year for this publication. |
coverage | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
dataAvailability | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datePublished | string |
disciplines | Array of strings Optional metadata that describes the submission's types of study or branches of knowledge. |
doiId | integer The ID of the DOI to assign to this publication. |
hideAuthor | boolean Default: false Whether the contributor details should be displayed for this publication. Commonly used for editorial statements without individual authorship. |
issueId | integer |
keywords | Array of strings Optional metadata, usually one- to three-word phrases that are used to indicate the main topics of a submission. |
languages | Array of strings Optional metadata that identifies the submission's primary language. |
lastModified | string |
licenseUrl | string A URL to a webpage describing the license terms for this publication. |
pages | string The pages of the issue in which this article appears if it is published in a physical format. |
prefix | object (LocaleObject) Key/value pairs containing data stored by locale key. |
primaryContactId | integer Which |
pub-id::publisher-id | string A unique ID provided by the publisher. It will be used in the publication's URL path instead of the |
rights | object (LocaleObject) Key/value pairs containing data stored by locale key. |
sectionId | integer |
seq | integer Default: 0 |
source | object (LocaleObject) Key/value pairs containing data stored by locale key. |
status | integer Default: 1 Enum: 1 3 4 5 Whether the publication is Queued (not yet scheduled for publication), Declined, Published or Scheduled (scheduled for publication at a future date). One of the |
subjects | Array of strings Optional metadata that consists of keywords, key phrases or classification codes that describe the submission's topics. |
submissionId | integer |
subtitle | object (LocaleObject) Key/value pairs containing data stored by locale key. |
supportingAgencies | Array of strings Optional metadata that indicates the source of research funding or other institutional support. |
title | object (LocaleObject) Key/value pairs containing data stored by locale key. |
type | object (LocaleObject) Key/value pairs containing data stored by locale key. |
urlPath | string An optional path to use in the URL instead of the ID. |
version | integer The version number of this publication. Version numbers should increment by one so that the third publication of a submission will have the version number |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "categoryIds": [
- 0
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiId": 0,
- "hideAuthor": false,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "version": 0
}
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
Only journal managers and subeditors can make a request to this endpoint.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
Duplicate a publication, including author and galley records, in order to create a new version of a publication that can be edited.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
If the publication is assigned to an issue that is not yet published, it will be scheduled for publication and the status
will be set to PKPSubmission::STATUS_SCHEDULED
. If the issue is already published, it will be published immediately and the status
will be set to PKPSubmission::STATUS_PUBLISHED
.
The publication will be validated against any publishing requirements before it is published and a 400
response will be returned if it fails validation.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
[- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
]
Create a new contributor for a publication.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
Details about the contributor that should be created.
affiliation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
biography | object (LocaleObject) Key/value pairs containing data stored by locale key. |
country | string The author's country in a two-letter code (ISO 3166-1). See all codes. |
string | |
familyName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
givenName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
id | integer |
includeInBrowse | boolean Default: true Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. |
orcid | string The ORCID of this contributor. See: https://orcid.org/ |
preferredPublicName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationId | integer |
seq | integer The order in which this contributor should appear in a list of contributors. |
url | string An optional URL to this contributor's webpage. |
userGroupId | integer The ID of this contributor's assigned user group. See userGroupName. |
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0
}
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
contributorId required | integer Contributor ID |
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
contributorId required | integer Contributor ID |
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
The details about the contributor that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
affiliation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
biography | object (LocaleObject) Key/value pairs containing data stored by locale key. |
country | string The author's country in a two-letter code (ISO 3166-1). See all codes. |
string | |
familyName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
givenName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
id | integer |
includeInBrowse | boolean Default: true Whether or not to include this contributor in author lists when the publication appears in search results, tables of content and catalog entries. |
orcid | string The ORCID of this contributor. See: https://orcid.org/ |
preferredPublicName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationId | integer |
seq | integer The order in which this contributor should appear in a list of contributors. |
url | string An optional URL to this contributor's webpage. |
userGroupId | integer The ID of this contributor's assigned user group. See userGroupName. |
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0
}
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
contributorId required | integer Contributor ID |
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
{- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
Change the order of the contributor's as they are listed in the publication.
publicationId required | integer Publication ID |
submissionId required | integer Submission ID |
Array of objects (Contributor) An array of contributor objects in the order they should be listed. |
{- "sortedAuthors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0
}
]
}
[- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
]
Results are eordered by datePublished
.
count | integer Default: 20 How many results to return in a single request. Max is |
isPublished | boolean Filter returned issues by those that have been published. Pass a |
numbers | string Filter returned issues by those assigned a specific number. |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. A |
orderBy | string Default: "datePublished" Enum: "datePublished" "lastModified" "seq" Order the results returned. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter the results by a search phrase matched against the title, description and year. It will also attempt to match search phrases using the localised issue identification. For example, in English a search for |
volumes | string Filter returned issues by those in a specific volume. |
years | string Filter returned issues by those in a specific year. |
[- {
- "_href": "string",
- "coverImage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageAltText": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageUrl": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "id": 0,
- "identification": "string",
- "journalId": 0,
- "number": "string",
- "published": true,
- "publishedUrl": "string",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "volume": 0,
- "year": 0
}
]
{- "_href": "string",
- "accessStatus": 0,
- "articles": [
- {
- "_href": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": null,
- "fileId": null,
- "mimetype": null,
- "path": null,
- "url": null
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "stageId": 1,
- "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
], - "coverImage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageAltText": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageUrl": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateNotified": "string",
- "datePublished": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "id": 0,
- "identification": "string",
- "journalId": 0,
- "lastModified": "string",
- "number": "string",
- "openAccessDate": "string",
- "originalStyleFileName": "string",
- "published": true,
- "publishedUrl": "string",
- "sections": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abstractsNotRequired": true,
- "contextId": 0,
- "editorRestricted": true,
- "hideAuthor": true,
- "hideTitle": true,
- "id": 0,
- "identifyType": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "isInactive": true,
- "metaIndexed": true,
- "metaReviewed": true,
- "policy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewFormId": 0,
- "sequence": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "wordCount": 0
}
], - "showNumber": true,
- "showTitle": true,
- "showVolume": true,
- "showYear": true,
- "styleFileName": "string",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "volume": 0,
- "year": 0
}
If the issue has a custom section order, the seq
property of each SectionSummary
will reflect the sequence for that issue.
issueId required | integer Issue ID |
{- "_href": "string",
- "accessStatus": 0,
- "articles": [
- {
- "_href": "string",
- "contextId": 0,
- "currentPublicationId": 0,
- "dateLastActivity": "string",
- "dateSubmitted": "string",
- "id": 0,
- "lastModified": "string",
- "locale": "string",
- "publications": [
- {
- "abstract": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "accessStatus": 0,
- "authors": [
- {
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "includeInBrowse": true,
- "locale": "string",
- "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationId": 0,
- "seq": 0,
- "url": "string",
- "userGroupId": 0,
- "userGroupName": "string"
}
], - "authorsString": "string",
- "authorsStringIncludeInBrowse": "string",
- "authorsStringShort": "string",
- "categoryIds": [
- 0
], - "citations": [
- "string"
], - "citationsRaw": "string",
- "copyrightHolder": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYear": 0,
- "coverImage": {
- "type": null,
- "properties": null,
- "en": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}, - "fr_CA": {
- "dateUploaded": "string",
- "uploadName": "string",
- "altText": "string"
}
}, - "coverage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datePublished": "string",
- "disciplines": [
- "string"
], - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": null,
- "fileId": null,
- "mimetype": null,
- "path": null,
- "url": null
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "hideAuthor": false,
- "id": 0,
- "issueId": 0,
- "keywords": [
- "string"
], - "languages": [
- "string"
], - "lastModified": "string",
- "licenseUrl": "string",
- "locale": "string",
- "pages": "string",
- "prefix": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "primaryContactId": 0,
- "pub-id::publisher-id": "string",
- "rights": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sectionId": 0,
- "seq": 0,
- "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "status": 1,
- "subjects": [
- "string"
], - "submissionId": 0,
- "subtitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "supportingAgencies": [
- "string"
], - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "urlPublished": "string",
- "version": 0
}
], - "stageId": 1,
- "status": 1,
- "statusLabel": "string",
- "submissionProgress": "",
- "urlAuthorWorkflow": "string",
- "urlEditorialWorkflow": "string",
- "urlPublished": "string",
- "urlSubmissionWizard": "string",
- "urlWorkflow": "string"
}
], - "coverImage": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageAltText": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "coverImageUrl": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateNotified": "string",
- "datePublished": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "galleys": [
- {
- "doiObject": {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}, - "file": {
- "assocId": 0,
- "assocType": 515,
- "caption": "string",
- "copyrightOwner": "string",
- "createdAt": "string",
- "creator": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "credit": "string",
- "dateCreated": "string",
- "dependentFiles": [
- { }
], - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "documentType": "string",
- "fileId": 0,
- "fileStage": 2,
- "genreId": 0,
- "genreIsDependent": true,
- "genreIsSupplementary": true,
- "genreName": "string",
- "id": 0,
- "language": "string",
- "locale": "string",
- "mimetype": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "path": "string",
- "publisher": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "revisions": [
- {
- "documentType": "string",
- "fileId": 0,
- "mimetype": "string",
- "path": "string",
- "url": "string"
}
], - "source": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "sourceSubmissionFileId": 0,
- "sponsor": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionId": 0,
- "terms": "string",
- "updatedAt": "string",
- "uploaderUserId": 0,
- "uploaderUserName": "string",
- "url": "string",
- "viewable": true
}, - "id": 0,
- "isApproved": true,
- "label": "string",
- "locale": "string",
- "pub-id::publisher-id": "string",
- "publicationId": 0,
- "seq": 0,
- "submissionFileId": 0,
- "urlPath": "string",
- "urlPublished": "string",
- "urlRemote": "string"
}
], - "id": 0,
- "identification": "string",
- "journalId": 0,
- "lastModified": "string",
- "number": "string",
- "openAccessDate": "string",
- "originalStyleFileName": "string",
- "published": true,
- "publishedUrl": "string",
- "sections": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abstractsNotRequired": true,
- "contextId": 0,
- "editorRestricted": true,
- "hideAuthor": true,
- "hideTitle": true,
- "id": 0,
- "identifyType": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "isInactive": true,
- "metaIndexed": true,
- "metaReviewed": true,
- "policy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewFormId": 0,
- "sequence": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "wordCount": 0
}
], - "showNumber": true,
- "showTitle": true,
- "showVolume": true,
- "showYear": true,
- "styleFileName": "string",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string",
- "volume": 0,
- "year": 0
}
assignedToSection | integer Filter the results by those assigned as section editors to this section ID. |
assignedToSubmission | integer Filter results by those assigned to this submission ID. |
assignedToSubmissionStage | integer Filter results by those assigned to this submission stage. Will be ignored if no |
count | integer Default: 20 How many results to return in a single request. Max is |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. A |
orderBy | string Default: "id" Enum: "id" "familyName" "givenName" Order the results returned. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
roleIds | Array of integers Filter the results by those who have one of these user role IDs. |
searchPhrase | string Filter the results by a search phrase matched against the |
status | string Default: "active" Enum: "active" "disabled" "all" Filter results by active/disabled users. |
{- "itemsMax": 0,
- "items": [
- {
- "_href": "string",
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disabled": true,
- "email": "string",
- "fullName": "string",
- "gossip": "string",
- "groups": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abbrevLocaleKey": "string",
- "contextId": 0,
- "id": 0,
- "isDefault": true,
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "nameLocaleKey": "string",
- "permitMetadataEdit": true,
- "permitSelfRegistration": true,
- "recommendOnly": true,
- "roleId": 16,
- "showTitle": true
}
], - "id": 0,
- "interests": [
- {
- "id": 0,
- "interest": "string"
}
], - "orcid": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "userName": "string"
}
]
}
{- "_href": "string",
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "apiKey": "string",
- "apiKeyEnabled": true,
- "authStr": "string",
- "billingAddress": "string",
- "biography": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "country": "string",
- "dateLastEmail": "string",
- "dateLastLogin": "string",
- "dateRegistered": "string",
- "dateValidated": "string",
- "disabled": true,
- "disabledReason": "string",
- "email": "string",
- "familyName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "fullName": "string",
- "givenName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "gossip": "string",
- "groups": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abbrevLocaleKey": "string",
- "contextId": 0,
- "id": 0,
- "isDefault": true,
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "nameLocaleKey": "string",
- "permitMetadataEdit": true,
- "permitSelfRegistration": true,
- "recommendOnly": true,
- "roleId": 16,
- "showTitle": true
}
], - "id": 0,
- "inlineHelp": true,
- "interests": [
- {
- "id": 0,
- "interest": "string"
}
], - "locales": [
- "string"
], - "mailingAddress": "string",
- "mustChangePassword": true,
- "orcid": "string",
- "phone": "string",
- "preferredPublicName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "profileImage": {
- "dateUploaded": "string",
- "name": "string",
- "uploadName": "string",
- "height": 0,
- "width": 0
}, - "signature": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "url": "string",
- "userName": "string"
}
averageCompletion | integer Filter results by those who complete a review assignment within |
count | integer Default: 20 How many results to return in a single request. Max is |
daysSinceLastAssignment | string Filter results by those who's last review was assigned at least |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. A |
orderBy | string Default: "id" Enum: "id" "familyName" "givenName" Order the results returned. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
reviewerRating | integer Filter results by those who have an average review assignment rating of at least |
reviewsActive | string Filter results by those who have |
reviewsCompleted | string Filter results by those who have completed at least |
reviewStage | integer Filter results by reviewers for one of the review stages in the workflow. Must be one of |
searchPhrase | string Filter the results by a search phrase matched against the |
status | string Default: "active" Enum: "active" "disabled" "all" Filter results by active/disabled users. |
{- "itemsMax": 0,
- "items": [
- {
- "_href": "string",
- "affiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "averageReviewCompletionDays": 0,
- "dateLastReviewAssignment": "string",
- "disabled": true,
- "fullName": "string",
- "gossip": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "groups": [
- {
- "abbrev": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "abbrevLocaleKey": "string",
- "contextId": 0,
- "id": 0,
- "isDefault": true,
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "nameLocaleKey": "string",
- "permitMetadataEdit": true,
- "permitSelfRegistration": true,
- "recommendOnly": true,
- "roleId": 16,
- "showTitle": true
}
], - "id": 0,
- "interests": [
- {
- "id": 0,
- "interest": "string"
}
], - "reviewsActive": 0,
- "reviewsCompleted": 0,
- "reviewsCancelled": 0,
- "reviewsDeclined": 0,
- "userName": "string"
}
]
}
Get an array of the journals (OJS), presses (OMP) or preprint servers (OPS) hosted on this site.
count | integer Default: 20 How many results to return in a single request. Max is |
isEnabled | string Filter results by enabled/disabled contexts. Any truthy or falsey value will get enabled/disabled contexts. Leave this parameter out to get all contexts. |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. |
searchPhrase | string Filter results by a search phrase matched against the |
{- "itemsMax": 0,
- "items": [
- {
- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "currentIssueId": 0,
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "enabled": true,
- "id": 0,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": { },
- "fr_CA": { }
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "url": "string",
- "urlPath": "string"
}
]
}
Create a new journal (OJS), press (OMP) or preprint server (OPS).
Details about the context that should be created. The path
field is required. The name
is required in the site's primary locale.
abbreviation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
about | object (LocaleObject) Key/value pairs containing data stored by locale key. |
acronym | object (LocaleObject) Key/value pairs containing data stored by locale key. |
additionalHomeContent | object (LocaleObject) Key/value pairs containing data stored by locale key. |
agencies | string Enum: "0" "enable" "request" "require" Enable agencies metadata. |
announcementsIntroduction | object (LocaleObject) Key/value pairs containing data stored by locale key. |
authorGuidelines | object (LocaleObject) Key/value pairs containing data stored by locale key. |
authorInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
automaticDoiDeposit | boolean |
beginSubmissionHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
citations | string Enum: "0" "enable" "request" "require" Enable citations metadata. |
clockssLicense | object (LocaleObject) Key/value pairs containing data stored by locale key. |
competingInterests | object (LocaleObject) Key/value pairs containing data stored by locale key. |
contactAffiliation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
contactEmail | string |
contactName | string |
contactPhone | string |
contributorsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightHolderOther | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightHolderType | string Enum: "author" "context" "other" |
copyrightNotice | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightYearBasis | string Default: "issue" Enum: "issue" "submission" |
copySubmissionAckAddress | string Default: "" A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one@example.com,two@example.com |
copySubmissionAckPrimaryContact | boolean Default: false A copy of the submission acknowledgement email will be sent to this context's primary contact when true. |
country | string |
coverage | string Enum: "0" "enable" "request" "require" Enable coverage metadata. |
currency | string |
currentIssueId | integer |
customHeaders | object (LocaleObject) Key/value pairs containing data stored by locale key. |
dataAvailability | string Enum: "0" "enable" "request" "require" Whether to not request, request or require a Data Availability Statement from the authors. |
dateFormatLong | object (LocaleObject) Key/value pairs containing data stored by locale key. |
dateFormatShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datetimeFormatLong | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datetimeFormatShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
defaultMetricType | string |
defaultReviewMode | integer Default: 2 Enum: 1 2 3 |
delayedOpenAccessDuration | integer |
delayedOpenAccessPolicy | object (LocaleObject) Key/value pairs containing data stored by locale key. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
detailsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
disableBulkEmailUserGroups | Array of integers User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. |
disableSubmissions | boolean Default: false |
disableUserReg | boolean |
disciplines | string Enum: "0" "enable" "request" "require" Enable disciplines metadata. |
doiCreationTime | string Default: "copyEditCreationTime" |
doiIssueSuffixPattern | string |
doiPrefix | string |
doiPublicationSuffixPattern | string |
doiRepresentationSuffixPattern | string |
doiSuffixType | string Default: "default" |
doiVersioning | boolean Default: false Whether each publication version should receive a unique DOI |
editorialStatsEmail | boolean Default: true Whether or not to send the monthly editorial statistics email to editors. Default: |
editorialTeam | object (LocaleObject) Key/value pairs containing data stored by locale key. |
emailSignature | string |
enableAnnouncements | boolean |
enableClockss | boolean |
enabled | boolean |
enabledDoiTypes | Array of strings Default: ["publication"] |
enableDois | boolean Default: true |
enableGeoUsageStats | string Default: "disabled" Enum: "disabled" "country" "country+region" "country+region+city" Whether to track usage statistics by location, and whether to track at the country, region or city level. |
enableInstitutionUsageStats | boolean Default: false Whether to track usage statistics by institutions. Requires institutional IP ranges to be configured. |
enableLockss | boolean |
enableOai | boolean Default: 1 |
enableOpenAccessNotification | boolean |
enablePublisherId | Array of strings |
enableSubscriptionOnlinePaymentNotificationPurchaseIndividual | boolean |
enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional | boolean |
enableSubscriptionOnlinePaymentNotificationRenewIndividual | boolean |
enableSubscriptionOnlinePaymentNotificationRenewInstitutional | boolean |
envelopeSender | string |
object | |
forTheEditorsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
isSushiApiPublic | boolean Default: true Whether or not the access to the COUNTER SUSHI statistics API is public. If false, only users with admin or manager roles can access the API. |
itemsPerPage | integer Default: 25 |
object | |
keywords | string Default: "request" Enum: "0" "enable" "request" "require" Enable keywords metadata. |
languages | string Enum: "0" "enable" "request" "require" Enable languages metadata. |
librarianInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
licenseTerms | object (LocaleObject) Key/value pairs containing data stored by locale key. |
licenseUrl | string |
lockssLicense | object (LocaleObject) Key/value pairs containing data stored by locale key. |
mailingAddress | string |
membershipFee | number Default: 0 |
membershipFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
membershipFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
notifyAllAuthors | boolean Default: true When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. |
numAnnouncementsHomepage | integer |
numDaysBeforeInviteReminder | integer |
numDaysBeforeSubmitReminder | integer |
numMonthsAfterSubscriptionExpiryReminder | integer |
numMonthsBeforeSubscriptionExpiryReminder | integer |
numPageLinks | integer Default: 10 |
numWeeksAfterSubscriptionExpiryReminder | integer |
numWeeksBeforeSubscriptionExpiryReminder | integer |
numWeeksPerResponse | integer Default: 4 |
numWeeksPerReview | integer Default: 4 |
onlineIssn | string |
openAccessPolicy | object (LocaleObject) Key/value pairs containing data stored by locale key. |
pageFooter | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
paymentPluginName | string |
paymentsEnabled | boolean |
primaryLocale | string |
printIssn | string |
privacyStatement | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationFee | number Default: 0 |
publicationFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publisherInstitution | string |
publishingMode | integer Enum: 0 1 2 |
purchaseArticleFee | number Default: 0 |
purchaseArticleFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
purchaseArticleFeeEnabled | boolean |
purchaseArticleFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
purchaseIssueFee | number |
purchaseIssueFeeEnabled | boolean |
rateReviewerOnQuality | boolean |
readerInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
registrationAgency | string Default: "" |
restrictArticleAccess | boolean |
restrictOnlyPdf | boolean |
restrictReviewerFileAccess | boolean |
restrictSiteAccess | boolean |
reviewerAccessKeysEnabled | boolean |
reviewGuidelines | object (LocaleObject) Key/value pairs containing data stored by locale key. |
reviewHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
rights | string Enum: "0" "enable" "request" "require" Enable rights metadata. |
searchDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
seq | integer |
showEnsuringLink | boolean |
sidebar | Array of strings |
source | string Enum: "0" "enable" "request" "require" Enable source metadata. |
object | |
subjects | string Enum: "0" "enable" "request" "require" Enable subjects metadata. |
submissionAcknowledgement | string Default: "allAuthors" Enum: "" "submittingAuthor" "allAuthors" Which authors should receive an email confirmation when a new submission is submitted, which acknowledges that their submission was submitted. When empty, the author will not be sent an email. Default: |
submissionChecklist | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionFee | number |
submissionFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submitWithCategories | boolean Default: false Whether or not submitting authors should be asked to select categories when they make a new submission. |
subscriptionAdditionalInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subscriptionEmail | string |
subscriptionExpiryPartial | boolean |
subscriptionMailingAddress | string |
subscriptionName | string |
subscriptionPhone | string |
supportedFormLocales | Array of strings |
supportedLocales | Array of strings |
supportedSubmissionLocales | Array of strings |
supportEmail | string |
supportName | string |
supportPhone | string |
themePluginPath | string Default: "default" |
timeFormat | object (LocaleObject) Key/value pairs containing data stored by locale key. |
type | string Enum: "0" "enable" "request" "require" Enable types metadata. |
uploadFilesHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
urlPath | string |
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string"
}
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "id": 0,
- "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "url": "string",
- "urlPath": "string"
}
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "id": 0,
- "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "url": "string",
- "urlPath": "string"
}
Edit a journal (OJS), press (OMP) or preprint server (OPS).
contextId required | integer Context ID |
The details about a context that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
abbreviation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
about | object (LocaleObject) Key/value pairs containing data stored by locale key. |
acronym | object (LocaleObject) Key/value pairs containing data stored by locale key. |
additionalHomeContent | object (LocaleObject) Key/value pairs containing data stored by locale key. |
agencies | string Enum: "0" "enable" "request" "require" Enable agencies metadata. |
announcementsIntroduction | object (LocaleObject) Key/value pairs containing data stored by locale key. |
authorGuidelines | object (LocaleObject) Key/value pairs containing data stored by locale key. |
authorInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
automaticDoiDeposit | boolean |
beginSubmissionHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
citations | string Enum: "0" "enable" "request" "require" Enable citations metadata. |
clockssLicense | object (LocaleObject) Key/value pairs containing data stored by locale key. |
competingInterests | object (LocaleObject) Key/value pairs containing data stored by locale key. |
contactAffiliation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
contactEmail | string |
contactName | string |
contactPhone | string |
contributorsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightHolderOther | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightHolderType | string Enum: "author" "context" "other" |
copyrightNotice | object (LocaleObject) Key/value pairs containing data stored by locale key. |
copyrightYearBasis | string Default: "issue" Enum: "issue" "submission" |
copySubmissionAckAddress | string Default: "" A copy of the submission acknowledgement email will be sent to any of the email addresses entered here. Separate multiple email addresses with a comma. Example: one@example.com,two@example.com |
copySubmissionAckPrimaryContact | boolean Default: false A copy of the submission acknowledgement email will be sent to this context's primary contact when true. |
country | string |
coverage | string Enum: "0" "enable" "request" "require" Enable coverage metadata. |
currency | string |
currentIssueId | integer |
customHeaders | object (LocaleObject) Key/value pairs containing data stored by locale key. |
dataAvailability | string Enum: "0" "enable" "request" "require" Whether to not request, request or require a Data Availability Statement from the authors. |
dateFormatLong | object (LocaleObject) Key/value pairs containing data stored by locale key. |
dateFormatShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datetimeFormatLong | object (LocaleObject) Key/value pairs containing data stored by locale key. |
datetimeFormatShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
defaultMetricType | string |
defaultReviewMode | integer Default: 2 Enum: 1 2 3 |
delayedOpenAccessDuration | integer |
delayedOpenAccessPolicy | object (LocaleObject) Key/value pairs containing data stored by locale key. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
detailsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
disableBulkEmailUserGroups | Array of integers User groups that a manager will be prevented from sending bulk email to using the notify feature. Only the admin may edit this property. |
disableSubmissions | boolean Default: false |
disableUserReg | boolean |
disciplines | string Enum: "0" "enable" "request" "require" Enable disciplines metadata. |
doiCreationTime | string Default: "copyEditCreationTime" |
doiIssueSuffixPattern | string |
doiPrefix | string |
doiPublicationSuffixPattern | string |
doiRepresentationSuffixPattern | string |
doiSuffixType | string Default: "default" |
doiVersioning | boolean Default: false Whether each publication version should receive a unique DOI |
editorialStatsEmail | boolean Default: true Whether or not to send the monthly editorial statistics email to editors. Default: |
editorialTeam | object (LocaleObject) Key/value pairs containing data stored by locale key. |
emailSignature | string |
enableAnnouncements | boolean |
enableClockss | boolean |
enabled | boolean |
enabledDoiTypes | Array of strings Default: ["publication"] |
enableDois | boolean Default: true |
enableGeoUsageStats | string Default: "disabled" Enum: "disabled" "country" "country+region" "country+region+city" Whether to track usage statistics by location, and whether to track at the country, region or city level. |
enableInstitutionUsageStats | boolean Default: false Whether to track usage statistics by institutions. Requires institutional IP ranges to be configured. |
enableLockss | boolean |
enableOai | boolean Default: 1 |
enableOpenAccessNotification | boolean |
enablePublisherId | Array of strings |
enableSubscriptionOnlinePaymentNotificationPurchaseIndividual | boolean |
enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional | boolean |
enableSubscriptionOnlinePaymentNotificationRenewIndividual | boolean |
enableSubscriptionOnlinePaymentNotificationRenewInstitutional | boolean |
envelopeSender | string |
object | |
forTheEditorsHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
isSushiApiPublic | boolean Default: true Whether or not the access to the COUNTER SUSHI statistics API is public. If false, only users with admin or manager roles can access the API. |
itemsPerPage | integer Default: 25 |
object | |
keywords | string Default: "request" Enum: "0" "enable" "request" "require" Enable keywords metadata. |
languages | string Enum: "0" "enable" "request" "require" Enable languages metadata. |
librarianInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
licenseTerms | object (LocaleObject) Key/value pairs containing data stored by locale key. |
licenseUrl | string |
lockssLicense | object (LocaleObject) Key/value pairs containing data stored by locale key. |
mailingAddress | string |
membershipFee | number Default: 0 |
membershipFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
membershipFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
notifyAllAuthors | boolean Default: true When enabled, all authors of a submission will receive a notification when an editorial decision is made regarding a submission. When disabled, only authors assigned to the submission will be notified. |
numAnnouncementsHomepage | integer |
numDaysBeforeInviteReminder | integer |
numDaysBeforeSubmitReminder | integer |
numMonthsAfterSubscriptionExpiryReminder | integer |
numMonthsBeforeSubscriptionExpiryReminder | integer |
numPageLinks | integer Default: 10 |
numWeeksAfterSubscriptionExpiryReminder | integer |
numWeeksBeforeSubscriptionExpiryReminder | integer |
numWeeksPerResponse | integer Default: 4 |
numWeeksPerReview | integer Default: 4 |
onlineIssn | string |
openAccessPolicy | object (LocaleObject) Key/value pairs containing data stored by locale key. |
pageFooter | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
paymentPluginName | string |
paymentsEnabled | boolean |
primaryLocale | string |
printIssn | string |
privacyStatement | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationFee | number Default: 0 |
publicationFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publicationFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
publisherInstitution | string |
publishingMode | integer Enum: 0 1 2 |
purchaseArticleFee | number Default: 0 |
purchaseArticleFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
purchaseArticleFeeEnabled | boolean |
purchaseArticleFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
purchaseIssueFee | number |
purchaseIssueFeeEnabled | boolean |
rateReviewerOnQuality | boolean |
readerInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
registrationAgency | string Default: "" |
restrictArticleAccess | boolean |
restrictOnlyPdf | boolean |
restrictReviewerFileAccess | boolean |
restrictSiteAccess | boolean |
reviewerAccessKeysEnabled | boolean |
reviewGuidelines | object (LocaleObject) Key/value pairs containing data stored by locale key. |
reviewHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
rights | string Enum: "0" "enable" "request" "require" Enable rights metadata. |
searchDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
seq | integer |
showEnsuringLink | boolean |
sidebar | Array of strings |
source | string Enum: "0" "enable" "request" "require" Enable source metadata. |
object | |
subjects | string Enum: "0" "enable" "request" "require" Enable subjects metadata. |
submissionAcknowledgement | string Default: "allAuthors" Enum: "" "submittingAuthor" "allAuthors" Which authors should receive an email confirmation when a new submission is submitted, which acknowledges that their submission was submitted. When empty, the author will not be sent an email. Default: |
submissionChecklist | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionFee | number |
submissionFeeDescription | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submissionFeeName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
submitWithCategories | boolean Default: false Whether or not submitting authors should be asked to select categories when they make a new submission. |
subscriptionAdditionalInformation | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subscriptionEmail | string |
subscriptionExpiryPartial | boolean |
subscriptionMailingAddress | string |
subscriptionName | string |
subscriptionPhone | string |
supportedFormLocales | Array of strings |
supportedLocales | Array of strings |
supportedSubmissionLocales | Array of strings |
supportEmail | string |
supportName | string |
supportPhone | string |
themePluginPath | string Default: "default" |
timeFormat | object (LocaleObject) Key/value pairs containing data stored by locale key. |
type | string Enum: "0" "enable" "request" "require" Enable types metadata. |
uploadFilesHelp | object (LocaleObject) Key/value pairs containing data stored by locale key. |
urlPath | string |
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "urlPath": "string"
}
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "id": 0,
- "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "url": "string",
- "urlPath": "string"
}
Delete a journal (OJS), press (OMP) or preprint server (OPS).
contextId required | integer Context ID |
{- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "additionalHomeContent": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "agencies": "0",
- "announcementsIntroduction": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "authorInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "automaticDoiDeposit": true,
- "beginSubmissionHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "citations": "0",
- "clockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "competingInterests": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactAffiliation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactEmail": "string",
- "contactName": "string",
- "contactPhone": "string",
- "contributorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copySubmissionAckAddress": "",
- "copySubmissionAckPrimaryContact": false,
- "copyrightHolderOther": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightHolderType": "author",
- "copyrightNotice": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "copyrightYearBasis": "issue",
- "country": "string",
- "coverage": "0",
- "currency": "string",
- "currentIssueId": 0,
- "customHeaders": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dataAvailability": "0",
- "dateFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "dateFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatLong": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "datetimeFormatShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "defaultMetricType": "string",
- "defaultReviewMode": 1,
- "delayedOpenAccessDuration": 0,
- "delayedOpenAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "detailsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "disableBulkEmailUserGroups": [
- 0
], - "disableSubmissions": false,
- "disableUserReg": true,
- "disciplines": "0",
- "doiCreationTime": "copyEditCreationTime",
- "doiIssueSuffixPattern": "string",
- "doiPrefix": "string",
- "doiPublicationSuffixPattern": "string",
- "doiRepresentationSuffixPattern": "string",
- "doiSuffixType": "default",
- "doiVersioning": false,
- "editorialStatsEmail": true,
- "editorialTeam": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "emailSignature": "string",
- "enableAnnouncements": true,
- "enableClockss": true,
- "enableDois": true,
- "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "enableLockss": true,
- "enableOai": 1,
- "enableOpenAccessNotification": true,
- "enablePublisherId": [
- "string"
], - "enableSubscriptionOnlinePaymentNotificationPurchaseIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationPurchaseInstitutional": true,
- "enableSubscriptionOnlinePaymentNotificationRenewIndividual": true,
- "enableSubscriptionOnlinePaymentNotificationRenewInstitutional": true,
- "enabled": true,
- "enabledDoiTypes": [
- "publication"
], - "envelopeSender": "string",
- "favicon": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "forTheEditorsHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "homepageImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "id": 0,
- "isSushiApiPublic": true,
- "itemsPerPage": 25,
- "journalThumbnail": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "keywords": "0",
- "languages": "0",
- "librarianInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseTerms": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "licenseUrl": "string",
- "lockssLicense": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "mailingAddress": "string",
- "membershipFee": 0,
- "membershipFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "membershipFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "notifyAllAuthors": true,
- "numAnnouncementsHomepage": 0,
- "numDaysBeforeInviteReminder": 0,
- "numDaysBeforeSubmitReminder": 0,
- "numMonthsAfterSubscriptionExpiryReminder": 0,
- "numMonthsBeforeSubscriptionExpiryReminder": 0,
- "numPageLinks": 10,
- "numWeeksAfterSubscriptionExpiryReminder": 0,
- "numWeeksBeforeSubscriptionExpiryReminder": 0,
- "numWeeksPerResponse": 4,
- "numWeeksPerReview": 4,
- "onlineIssn": "string",
- "openAccessPolicy": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderLogoImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "paymentPluginName": "string",
- "paymentsEnabled": true,
- "primaryLocale": "string",
- "printIssn": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFee": 0,
- "publicationFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publicationFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "publisherInstitution": "string",
- "publishingMode": 0,
- "purchaseArticleFee": 0,
- "purchaseArticleFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseArticleFeeEnabled": true,
- "purchaseArticleFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "purchaseIssueFee": 0,
- "purchaseIssueFeeEnabled": true,
- "rateReviewerOnQuality": true,
- "readerInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "registrationAgency": "",
- "restrictArticleAccess": true,
- "restrictOnlyPdf": true,
- "restrictReviewerFileAccess": true,
- "restrictSiteAccess": true,
- "reviewGuidelines": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "reviewerAccessKeysEnabled": true,
- "rights": "0",
- "searchDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "showEnsuringLink": true,
- "sidebar": [
- "string"
], - "source": "0",
- "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "subjects": "0",
- "submissionAcknowledgement": "",
- "submissionChecklist": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFee": 0,
- "submissionFeeDescription": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submissionFeeName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "submitWithCategories": false,
- "subscriptionAdditionalInformation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subscriptionEmail": "string",
- "subscriptionExpiryPartial": true,
- "subscriptionMailingAddress": "string",
- "subscriptionName": "string",
- "subscriptionPhone": "string",
- "supportEmail": "string",
- "supportName": "string",
- "supportPhone": "string",
- "supportedFormLocales": [
- "string"
], - "supportedLocales": [
- "string"
], - "supportedSubmissionLocales": [
- "string"
], - "themePluginPath": "default",
- "timeFormat": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "type": "0",
- "uploadFilesHelp": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "url": "string",
- "urlPath": "string"
}
Edit the active theme and theme options for any journal (OJS), press (OMP) or preprint server (OPS).
contextId required | integer Context ID |
The details you want to edit. The themePluginPath
is required to specify the active theme, even if the theme is not being changed. Any additional keys/values must match the options defined by that theme.
... | string |
themePluginPath | string |
{- "themePluginPath": "string",
- "...": "string"
}
{- "themePluginPath": "string",
- "...": "string"
}
Only admins can access these endpoints, which should be accessed using _
instead of the journal path.
{- "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "compressStatsLogs": false,
- "contactEmail": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "counterR5StartDate": "string",
- "enableBulkEmails": [
- 0
], - "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "installedLocales": [
- "string"
], - "isSiteSushiPlatform": false,
- "isSushiApiPublic": true,
- "keepDailyUsageStats": false,
- "minPasswordLength": 0,
- "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderTitleImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "primaryLocale": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "redirect": 0,
- "sidebar": [
- "string"
], - "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "supportedLocales": [
- "string"
], - "sushiPlatformID": "string",
- "themePluginPath": "default",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
The details about the site that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
about | object (LocaleObject) Key/value pairs containing data stored by locale key. |
compressStatsLogs | boolean Default: false Whether or not to compress usage statistics log files after they have been processed and archived. |
contactEmail | object (LocaleObject) Key/value pairs containing data stored by locale key. |
contactName | object (LocaleObject) Key/value pairs containing data stored by locale key. |
counterR5StartDate | string |
enableBulkEmails | Array of integers Which hosted journals, presses or preprint servers are allowed to send bulk emails. |
enableGeoUsageStats | string Default: "disabled" Enum: "disabled" "country" "country+region" "country+region+city" Whether to track usage statistics by location, and whether to track at the country, region or city level. |
enableInstitutionUsageStats | boolean Default: false Whether to track usage statistics by institutions. Requires institutional IP ranges to be configured. |
installedLocales | Array of strings |
isSiteSushiPlatform | boolean Default: false Whether or not to designate the site as the platform in COUNTER SUSHI statistics. Set this to true when all of the contexts (journals, presses or servers) of this site are published, owned or operated by the same provider. |
isSushiApiPublic | boolean Default: true Whether or not the access to the COUNTER SUSHI statistics API is public. If false, only users with admin or manager roles can access the API. |
keepDailyUsageStats | boolean Default: false Whether to retain daily usage stats or consolidate monthly stats. Daily stats can quickly result in millions of database rows for large installs with lots of submissions. |
minPasswordLength | integer |
pageFooter | object (LocaleObject) Key/value pairs containing data stored by locale key. |
object | |
primaryLocale | string |
privacyStatement | object (LocaleObject) Key/value pairs containing data stored by locale key. |
redirect | integer |
sidebar | Array of strings |
object | |
supportedLocales | Array of strings |
sushiPlatformID | string The platform ID for COUNTER SUSHI statistics. Required when isSiteSushiPlatform is true. |
themePluginPath | string Default: "default" |
title | object (LocaleObject) Key/value pairs containing data stored by locale key. |
{- "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "compressStatsLogs": false,
- "contactEmail": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "counterR5StartDate": "string",
- "enableBulkEmails": [
- 0
], - "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "installedLocales": [
- "string"
], - "isSiteSushiPlatform": false,
- "isSushiApiPublic": true,
- "keepDailyUsageStats": false,
- "minPasswordLength": 0,
- "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderTitleImage": {
- "type": null,
- "properties": null,
- "en": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "primaryLocale": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "redirect": 0,
- "sidebar": [
- "string"
], - "styleSheet": {
- "temporaryFileId": 0,
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "supportedLocales": [
- "string"
], - "sushiPlatformID": "string",
- "themePluginPath": "default",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
{- "about": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "compressStatsLogs": false,
- "contactEmail": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contactName": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "counterR5StartDate": "string",
- "enableBulkEmails": [
- 0
], - "enableGeoUsageStats": "disabled",
- "enableInstitutionUsageStats": false,
- "installedLocales": [
- "string"
], - "isSiteSushiPlatform": false,
- "isSushiApiPublic": true,
- "keepDailyUsageStats": false,
- "minPasswordLength": 0,
- "pageFooter": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "pageHeaderTitleImage": {
- "type": null,
- "properties": null,
- "en": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}, - "fr_CA": {
- "name": "string",
- "uploadName": "string",
- "width": 0,
- "height": 0,
- "dateUploaded": "string",
- "altText": "string"
}
}, - "primaryLocale": "string",
- "privacyStatement": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "redirect": 0,
- "sidebar": [
- "string"
], - "styleSheet": {
- "name": "string",
- "uploadName": "string",
- "dateUploaded": "string"
}, - "supportedLocales": [
- "string"
], - "sushiPlatformID": "string",
- "themePluginPath": "default",
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
Get the active theme and theme options for the site.
The details you want to edit. The themePluginPath
is required to specify the active theme, even if the theme is not being changed. Any additional keys/values must match the options defined by that theme.
... | string |
themePluginPath | string |
{- "themePluginPath": "string",
- "...": "string"
}
{- "themePluginPath": "string",
- "...": "string"
}
count | integer Default: 20 How many results to return in a single request. |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. |
searchPhrase | string Filter results by a search phrase matched against the |
typeIds | Array of integers Filter results by announcements of these announcement types. |
{- "itemsMax": 0,
- "items": [
- {
- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "datePosted": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0,
}
]
}
Create and publish a new announcement in this context.
Details about the announcement that should be created.
assocId | integer The journal, press or preprint server ID. |
assocType | integer The assoc object. This should always be |
dateExpire | string (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
descriptionShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
title | object (LocaleObject) Key/value pairs containing data stored by locale key. |
typeId | integer (Optional) One of the announcement type ids. |
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0
}
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "datePosted": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0,
}
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "datePosted": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0,
}
Edit an announcement.
announcementId required | integer Announcement ID |
The details about the announcement that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
assocId | integer The journal, press or preprint server ID. |
assocType | integer The assoc object. This should always be |
dateExpire | string (Optional) The date that this announcement expires, if one is set. This is typically used to express closing dates for calls for papers. |
description | object (LocaleObject) Key/value pairs containing data stored by locale key. |
descriptionShort | object (LocaleObject) Key/value pairs containing data stored by locale key. |
title | object (LocaleObject) Key/value pairs containing data stored by locale key. |
typeId | integer (Optional) One of the announcement type ids. |
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0
}
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "datePosted": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0,
}
Delete an announcement.
announcementId required | integer Announcement ID |
{- "assocId": 0,
- "assocType": 0,
- "dateExpire": "string",
- "datePosted": "string",
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "descriptionShort": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "title": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "typeId": 0,
}
count | integer Default: 30 How many results to return in a single request. Max is |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. A |
status | Array of integers Items Enum: 1 2 3 4 5 Filter results by one or more DOI statuses. Must match the value of one of the |
{- "itemsMax": 0,
- "items": [
- {
- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}
]
}
Details about the DOI that should be created.
doi | string The DOI itself, such as |
registrationAgency | string The agency with which the DOI is registered. If the DOI was manually marked registered, this will be |
status | integer Default: 1 Enum: 1 2 3 4 5 The status of the DOI, such as whether it has been successfully deposited. Must match the value of one of the following: |
{- "doi": "string",
- "registrationAgency": "string",
- "status": 1
}
{- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}
Modify the contents of a single DOI. When working with versioned content, if you'd like to modify the content of a DOI for a single version of a publication object, you need to include the pubObjectType
and pubObjectId
in the request body.
doiId required | integer DOI ID |
The details about the DOI you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified. Two exceptions are pubObjectType
and pubObjectId
. They are optional but if one is used, the other must also be used.
doi | string The DOI itself, such as |
pubObjectId | integer ID of publication object you want ot modify the DOI for. |
pubObjectType | string Enum: "publication" "representation" "issue" Publication object type to modify the DOI for. |
registrationAgency | string The agency with which the DOI is registered. If the DOI was manually marked registered, this will be |
status | integer Default: 1 Enum: 1 2 3 4 5 The status of the DOI, such as whether it has been successfully deposited. Must match the value of one of the following: |
{- "doi": "string",
- "registrationAgency": "string",
- "status": 1,
- "pubObjectType": "publication",
- "pubObjectId": 0
}
{- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}
Delete a single DOI. When working with versioned content, if you'd like to delete a DOI for a single version of a publication object, you will need to include the pubObjectType
and the corresponding pubObjectId
in the request body.
doiId required | integer DOI ID |
Body params are optional but must be used together.
pubObjectId | integer ID of publication object you want to modify the DOI for. |
pubObjectType | string Enum: "publication" "representation" "issue" Publication object type to modify the DOI for. |
{- "pubObjectType": "publication",
- "pubObjectId": 0
}
{- "contextId": 0,
- "doi": "string",
- "id": 0,
- "registrationAgency": "string",
- "resolvingUrl": "string",
- "status": 1
}
Schedules all publication objects with DOIs enabled that are published and include DOIs for deposit with the configured registration agency. DOIs will be queued and handled by the Jobs system in the order in which they were added.
{- "error": "string",
- "errorMessage": "string"
}
Assign DOIs to all publication objects of a submission, such as the publication and galleys. This will only assign DOIs to publication objects that have been enabled in the DOI settings.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "string"
]
}
Export submission metadata in a format that can be deposited with the currently configured DOI registration agency. This returns a file id which can be downloaded through the API endpoint /dois/exports/{fileId}
. See "Download a DOI Export" above.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "temporaryFileId": 0
}
This will deposit the specified submission DOIs with the currently configured DOI registration agency.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "error": "string",
- "errorMessage": "string"
}
This will mark the specified submission DOIs as registered. This can be done to indicate the items were deposited outside of OJS.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Failed to mark the DOI registered for Lorem Ipsum Dolor Sit Amet. The submission must be published before the status can be updated."
]
}
This will mark the specified submission DOIs as unregistered. This can be done to remove a DOI's previous registration status.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Could not create a DOI for the following submission: {$pubObjectTitle}. It does not exist in the current journal context."
]
}
This will mark the specified submission DOIs as needing to be resubmitted to the registration agency to update their metadata records.
ids | Array of integers Submission IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Failed to mark the DOI needs sync for Lorem Ipsum Dolor Sit Amet. The DOI cannot be marked needs sync because they have not yet been registered or submitted."
]
}
Only admins and journal managers can access these endpoints. These endpoints are only available when issues have been configured to receive DOIs in the DOI settings.
Export issue metadata in a format that can be deposited with the currently configured DOI registration agency. This returns a file id which can be downloaded through the API endpoint /dois/exports/{fileId}
. See "Download a DOI Export" above.
ids | Array of integers Issue IDs |
{- "ids": [
- 0
]
}
{- "temporaryFileId": 1
}
This will deposit the specified issue DOIs with the currently configured DOI registration agency.
ids | Array of integers Issue IDs |
{- "ids": [
- 0
]
}
{- "error": "string",
- "errorMessage": "string"
}
This will mark the specified issue DOIs as registered. This can be done to indicate the items were deposited outside of OJS.
ids | Array of integers Issue IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Failed to mark the DOI registered for Vol. 1, No. 2: Lorem Ipsum. The issue must be published before the status can be updated."
]
}
This will mark the specified issue DOIs as unregistered. This can be done to remove a DOI's previous registration status.
ids | Array of integers Issue IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Could not create a DOI for the following issue: Vol. 1, No. 2: Lorem Ipsum. It does not exist in the current journal context."
]
}
This will mark the specified issue DOIs as needing to be resubmitted to the registration agency to update their metadata records.
ids | Array of integers Issue IDs |
{- "ids": [
- 0
]
}
{- "failedDoiActions": [
- "Failed to mark the DOI needs sync for Vol. 1, No. 2: Lorem Ipsum. The DOI cannot be marked needs sync because they have not yet been registered or submitted."
]
}
alternateTo | string Filter results by those assigned to a |
count | integer Default: 30 How many templates to return in a single request. Max is |
isModified | boolean Filter results by those that have been modified from the default template. This is different from |
offset | integer Offset the templates returned. Use this to receive subsequent pages of requests. |
searchPhrase | string Filter results by a search phrase matched against the |
{- "itemsMax": 0,
- "items": [
- {
- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contextId": 0,
- "id": 0,
- "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
]
}
Details about the email template that should be created.
alternateTo | string The |
body | object (LocaleObject) Key/value pairs containing data stored by locale key. |
key | string A unique key for this email template. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subject | object (LocaleObject) Key/value pairs containing data stored by locale key. |
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contextId": 0,
- "id": 0,
- "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
Email templates are fetched by their key, rather than ID, so that a default template is retrieved if it has not been customized. See the documentation.
key required | integer Email template key |
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contextId": 0,
- "id": 0,
- "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
key required | integer Email template key |
The details about the email template that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
alternateTo | string The |
body | object (LocaleObject) Key/value pairs containing data stored by locale key. |
key | string A unique key for this email template. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
subject | object (LocaleObject) Key/value pairs containing data stored by locale key. |
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contextId": 0,
- "id": 0,
- "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
Default templates that have not been modified can not be deleted.
key required | integer Email template key |
{- "alternateTo": "string",
- "body": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "contextId": 0,
- "id": 0,
- "key": "string",
- "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "subject": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}
}
count | integer Default: 30 How many results to return in a single request. |
offset | integer Offset the results returned. Use this to receive subsequent pages of requests. |
searchPhrase | string Filter results by a search phrase matched against the name or IP adress. |
{- "itemsMax": 0,
- "items": [
- {
- "contextId": 0,
- "deletedAt": "string",
- "id": 0,
- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
]
}
Add an institution to this context.
Details about the institution that should be created.
ipRanges | Array of strings A list of IP ranges belonging to this institution. Used to track usage statistics and subscription access by institution. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
ror | string The ROR id of this institution. |
{- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
{- "contextId": 0,
- "deletedAt": "string",
- "id": 0,
- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
{- "contextId": 0,
- "deletedAt": "string",
- "id": 0,
- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
Edit an institution.
institutionId required | integer Institution ID |
The details about the institution that you want to edit. All params are optional. When a param is omitted, the existing value of that param will not be modified.
ipRanges | Array of strings A list of IP ranges belonging to this institution. Used to track usage statistics and subscription access by institution. |
name | object (LocaleObject) Key/value pairs containing data stored by locale key. |
ror | string The ROR id of this institution. |
{- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
{- "contextId": 0,
- "deletedAt": "string",
- "id": 0,
- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
Delete an institution.
institutionId required | integer Institution ID |
{- "contextId": 0,
- "deletedAt": "string",
- "id": 0,
- "ipRanges": [
- "string"
], - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "ror": "string"
}
Get a list of all Mailable classes configured in the journal. Each mailable class represents an email event, such as a notification to a reviewer.
searchPhrase | string Filter results by a search phrase matched against the |
[- {
- "dataDescriptions": {
- "journalName": "The journal's name",
- "journalUrl": "The URL to the journal's homepage",
- "...": "All prepared data"
}, - "description": "This email is sent when a discussion is created or replied to in the copyediting stage.",
- "emailTemplateKey": "DISCUSSION_NOTIFICATION_COPYEDITING",
- "fromRoleIds": [
- 17,
- 4097,
- 65536
], - "groupIds": [
- "copyediting"
], - "name": "Discussion (Copyediting)",
- "supportsTemplates": true,
- "toRoleIds": [
- 17,
- 4097,
- 65536
]
}
]
Get a Mailable by its id.
id required | string The ID of the mailable derived from the fully-qualified class name, such as |
{- "dataDescriptions": {
- "journalName": "The journal's name",
- "journalUrl": "The URL to the journal's homepage",
- "...": "All prepared data"
}, - "description": "This email is sent when a discussion is created or replied to in the copyediting stage.",
- "emailTemplateKey": "DISCUSSION_NOTIFICATION_COPYEDITING",
- "fromRoleIds": [
- 17,
- 4097,
- 65536
], - "groupIds": [
- "copyediting"
], - "name": "Discussion (Copyediting)",
- "supportsTemplates": true,
- "toRoleIds": [
- 17,
- 4097,
- 65536
], - "emailTemplates": [
- {
- "alternateTo": null,
- "body": {
- "fr_CA": "Prière de saisir votre message.",
- "en": "Please enter your message."
}, - "contextId": null,
- "id": null,
- "key": "DISCUSSION_NOTIFICATION_COPYEDITING",
- "name": {
- "fr_CA": "",
- "en": "Discussion (Copyediting)"
}, - "subject": {
- "fr_CA": "Un message à propos de la revue {$journalName}",
- "en": "A message regarding {$journalName}"
}
}, - {
- "alternateTo": "DISCUSSION_NOTIFICATION_COPYEDITING",
- "body": {
- "en": "<p>Dear {$recipientName},</p><p>A new submission is ready to be copyedited:</p><p><a href\"{$submissionUrl}\">{$submissionId} {$submissionTitle}</a><br />{$journalName}</p><p>Please follow these steps to complete this task:</p><ol><li>1. Click on the Submission URL below.</li><li>2. Open any files available under Draft Files and edit the files. Use the Copyediting Discussions area if you need to contact the editor(s) or author(s).</li><li>3. Save the copyedited file(s) and upload them to the Copyedited panel.</li><li>4. Use the Copyediting Discussions to notify the editor(s) that all files have been prepared, and that the Production process may begin.</li></ol><p>If you are unable to undertake this work at this time or have any questions, please contact me. Thank you for your contribution to this journal.</p><p>Kind regards,</p>{$signature}",
- "fr_CA": "{$recipientName},<br />\n<br />\nJ'aimerais que vous effectuiez la révision du manuscrit intitulé « {$submissionTitle} » pour la revue {$journalName} à l'aide des étapes suivantes.<br />\n1. Cliquer sur l'URL de la soumission ci-dessous.<br />\n2. Ouvrir le(s) fichier(s) disponible(s) sous Fichiers des ébauches finales et effectuer votre révision, tout en ajoutant des discussions sur la révision, le cas échéant.<br />\n3. Enregistrer le(s) fichier(s) révisé(s) et le(s) téléverser dans la section Version(s) révisée(s).<br />\n4. Informer le,la rédacteur-trice que tous les fichiers ont été révisés et que l'étape de production peut débuter.<br />\n<br />\nURL de la revue {$journalName} : {$journalUrl}<br />\nURL de la soumission : {$submissionUrl}<br />\nNom d'utilisateur-trice : {$recipientUsername}"
}, - "contextId": 1,
- "id": 1,
- "key": "COPYEDIT_REQUEST",
- "name": {
- "en": "Request Copyedit",
- "fr_CA": ""
}, - "subject": {
- "en": "Submission {$submissionId} is ready to be copyedited for {$contextAcronym}",
- "fr_CA": "Demande de révision d'une soumission"
}
}
]
}
Only admins and journal managers can access these endpoints. Some of these endpoints can return results in CSV format. Where possible, send an Accept: text/csv
header with the request to receive stats in CSV format.
Returns a list of journals, presses or preprint servers ordered by the number of visitors to their homepage. Only admins can access this endpoint.
contextIds | Array of integers Filter results by these contexts. |
count | integer Default: 30 How many contexts to return in a single request. Max is |
dateEnd | string Return stats for the number of visits before this date. |
dateStart | string Return stats for the number of visits after this date. |
offset | integer Offset the contexts returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by contexts that match this search phrase. Searches the same context properties as the |
[- {
- "total": 0,
- "context": {
- "_href": "string",
- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "currentIssueId": 0,
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "enabled": true,
- "id": 0,
- "journalThumbnail": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "url": "string",
- "urlPath": "string"
}
}
]
Returns a monthly or daily timeline of the number of visitors to the homepage of each journal, press or preprint server. Only admins can access this endpoint.
contextIds | Array of integers Filter results by these contexts. |
dateEnd | string Return stats for contexts before this date. |
dateStart | string Return stats for contexts after this date. |
searchPhrase | string Filter results by contexts that match this search phrase. Searches the same context properties as the |
timelineInterval | string Default: "month" Enum: "day" "month" Return the total daily or monthly views |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Returns the number of views of the homepage of a journal, press or preprint server.
contextId required | integer The context ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
{- "total": 0,
- "context": {
- "_href": "string",
- "abbreviation": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "acronym": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "currentIssueId": 0,
- "description": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "enabled": true,
- "id": 0,
- "journalThumbnail": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "name": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "seq": 0,
- "url": "string",
- "urlPath": "string"
}
}
Returns a monthly or daily timeline of visits to the homepage of this context.
contextId required | integer The context ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
timelineInterval | string Default: "month" Enum: "day" "month" Return the total daily or monthly views |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Returns information about editorial activity such as the number of submissions accepted and declined, the number of days to reach editorial decisions, and the acceptance and rejection rates.
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
sectionIds | Array of integers Filter results by submissions to these sections. |
[- {
- "key": "submissionsReceived",
- "name": "Submissions Received",
- "value": 64
}, - {
- "key": "submissionsAccepted",
- "name": "Submissions Accepted",
- "value": 54
}, - {
- "key": "submissionsDeclined",
- "name": "Submissions Declined",
- "value": 4
}, - {
- "key": "submissionsDeclinedDeskReject",
- "name": "Submissions Declined (Desk Reject)",
- "value": 0
}, - {
- "key": "submissionsDeclinedPostReview",
- "name": "Submissions Declined (After Review)",
- "value": 4
}, - {
- "key": "submissionsPublished",
- "name": "Submissions Published",
- "value": 53
}, - {
- "key": "daysToDecision",
- "name": "Days to First Editorial Decision",
- "value": 42
}, - {
- "key": "daysToAccept",
- "name": "Days to Accept",
- "value": 123
}, - {
- "key": "daysToReject",
- "name": "Days to Reject",
- "value": 322
}, - {
- "key": "acceptanceRate",
- "name": "Acceptance Rate",
- "value": 0.84
}, - {
- "key": "declineRate",
- "name": "Rejection Rate",
- "value": 0.06
}, - {
- "key": "declinedDeskRate",
- "name": "Desk Reject Rate",
- "value": 0
}, - {
- "key": "declinedReviewRate",
- "name": "After Review Reject Rate",
- "value": 0.06
}
]
Returns yearly averages of editorial activity. To ensure averages are calculated fairly, partial years are not included in the averages. For example, if the first submission was received in October 2017 and the last submission was received in the current calendar year, only submissions from 2018 up until the end of the previous calendar year will be used to calculate the average.
sectionIds | Array of integers Filter results by submissions to these sections. |
{- "submissionsReceived": 32,
- "submissionsAccepted": 32,
- "submissionsDeclined": 32,
- "submissionsDeclinedDeskReject": 32,
- "submissionsDeclinedPostReview": 32,
- "submissionsPublished": 32
}
Only admins and journal managers can access these endpoints. Some of these endpoints can return results in CSV format. Where possible, send an Accept: text/csv
header with the request to receive stats in CSV format.
Returns a list of issues ordered by the total visits it received, based on the number of views of the TOC and the number of downloads of the issue galley.
count | integer Default: 30 How many issues to return in a single request. Max is |
dateEnd | string Return stats for issues before this date. |
dateStart | string Return stats for issues after this date. |
issueIds | Array of integers Filter results by these issues. |
offset | integer Offset the issues returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by issues that match this search phrase. Searches the same issue properties as the |
[- {
- "totalViews": 0,
- "tocViews": 0,
- "issueGalleyViews": 0,
- "issue": {
- "_href": "string",
- "id": 0,
- "identification": "string",
- "publishedUrl": "string"
}
}
]
Returns a monthly or daily timeline of an issue's stats.
dateEnd | string Return stats for issues before this date. |
dateStart | string Return stats for issues after this date. |
issueIds | Array of integers Filter results by these issues. |
searchPhrase | string Filter results by issues that match this search phrase. Searches the same issue properties as the |
timelineInterval | string Default: "month" Enum: "day" "month" Return the total daily or monthly views |
type | string Value: "files" Whether to return a timeline based on views of the issue's table of contents or downloads of the issue's galley. Default: table of contents views. |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Returns an issue's view and download statistics broken down by type of request.
issueId required | integer The issue ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
{- "totalViews": 0,
- "tocViews": 0,
- "issueGalleyViews": 0,
- "issue": {
- "_href": "string",
- "id": 0,
- "identification": "string",
- "publishedUrl": "string"
}
}
Returns a monthly or daily timeline of visits to the issue.
issueId required | integer The issue ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
timelineInterval | string Default: "month" Enum: "day" "month" Return the total daily or monthly views |
type | string Value: "files" Whether to return a timeline based on views of the issue table of contents or downloads of the issue galley. Default: table of contents views. |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Only admins and journal managers can access these endpoints. Some of these endpoints can return results in CSV format. Where possible, send an Accept: text/csv
header with the request to receive stats in CSV format.
Returns a list of publications ordered by the total number of views.
count | integer Default: 30 How many publications to return in a single request. Max is |
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
offset | integer Offset the publications returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
[- {
- "abstractViews": 0,
- "galleyViews": 0,
- "pdfViews": 0,
- "htmlViews": 0,
- "otherViews": 0,
- "publication": {
- "_href": "string",
- "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "shortAuthorString": "string",
- "urlPublished": "string",
- "urlWorkflow": "string"
}
}
]
Returns a monthly or daily timeline of visits to the publications which match the request parameters.
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
timelineInterval | string Default: "month" Enum: "day" "month" Return the daily or monthly values. |
type | string Value: "files" Whether to return a timeline based on abstract page views or file downloads. Default: abstract page views. |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Returns a publication's number of visits and downloads broken down by type.
submissionId required | integer The submission ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
{- "abstractViews": 0,
- "galleyViews": 0,
- "pdfViews": 0,
- "htmlViews": 0,
- "otherViews": 0,
- "publication": {
- "_href": "string",
- "fullTitle": {
- "en": "Filename",
- "fr_CA": "Nom de fichier"
}, - "id": 0,
- "shortAuthorString": "string",
- "urlPublished": "string",
- "urlWorkflow": "string"
}
}
Returns a monthly or daily timeline of visits to the publication.
submissionId required | integer The submission ID. |
dateEnd | string Return stats before this date. |
dateStart | string Return stats after this date. |
timelineInterval | string Default: "month" Enum: "day" "month" Return the total daily or monthly views |
type | string Value: "files" Whether to return a timeline based on abstract page views or file downloads. Default: abstract page views. |
[- {
- "date": "string",
- "label": "string",
- "value": 0
}
]
Returns a list of published files ordered by their total downloads.
count | integer Default: 30 How many files to return in a single request. Max is 100. |
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
offset | integer Offset the files returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
[- {
- "submissionId": 0,
- "submissionTitle": "string",
- "submissionFileId": 0,
- "fileName": "string",
- "downloads": 0
}
]
Returns a list of countries ordered by the number of visits to publications from each country. This endpoint is only available when the context has been configured to collect geographical statistics.
count | integer Default: 30 How many countries to return in a single request. Max is |
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
offset | integer Offset the countries returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
[- {
- "country": "string",
- "total": 0,
- "unique": 0
}
]
Returns a list of regions ordered by the number of visits to publications from each region. This endpoint is only available when the context has been configured to collect regional geographical statistics.
count | integer Default: 30 How many regions to return in a single request. Max is |
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
offset | integer Offset the regions returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
[- {
- "region": "string",
- "country": "string",
- "total": 0,
- "unique": 0
}
]
Returns a list of cities ordered by the number of visits to publications from each city. This endpoint is only available when the context has been configured to collect city geographical statistics.
count | integer Default: 30 How many cities to return in a single request. Max is |
dateEnd | string Return stats for publications before this date. |
dateStart | string Return stats for publications after this date. |
issueIds | Array of integers Filter results by publications in these issues. |
offset | integer Offset the cities returned. Use this to receive subsequent pages of requests. |
orderDirection | string Default: "DESC" Enum: "ASC" "DESC" Return the results in ascending or descending order. |
searchPhrase | string Filter results by publications that match this search phrase. Searches the same submission properties as the |
sectionIds | Array of integers Filter results by publications in these sections. |
submissionIds | Array of integers Filter results by these submissions. |
[- {
- "city": "string",
- "region": "string",
- "country": "string",
- "total": 0,
- "unique": 0
}
]
Returns a count of the number of registered users by role. The registeredBefore
and registeredAfter
params reflect current user roles. A user who registered as an author in January, 2019 but was later appointed to subeditor will be counted as a subeditor when the registration date range includes January, 2019, even though they did not become a subeditor until a later date.
registeredAfter | string Include users who registered after this date. |
registeredBefore | string Include users who registered before this date. |
status | string Default: "active" Enum: "active" "disabled" "all" Whether to include |
[- {
- "id": "total",
- "name": "Total",
- "value": 304
}, - {
- "id": 16,
- "name": "Journal Manager",
- "value": 4
}, - {
- "id": 17,
- "name": "Section Editor",
- "value": 14
}, - {
- "id": 4097,
- "name": "Assistant",
- "value": 1
}, - {
- "id": 65536,
- "name": "Author",
- "value": 220
}, - {
- "id": 4096,
- "name": "Reviewer",
- "value": 107
}, - {
- "id": 1048576,
- "name": "Reader",
- "value": 207
}, - {
- "id": 2097152,
- "name": "Subscription Manager",
- "value": 0
}
]
COUNTER R5 reports can be harvested via the COUNTER_SUSHI API at the path /stats/sushi. The specification is documented at the link below.
Handle controlled vocabularies like keywords and subjects. Only admins, journal managers, subeditors, assistants and authors can access these endpoints.
locale | string The locale key, such as |
vocab required | string The type of controlled vocab you want to retrieve entries for. One of |
[- "string"
]
A special endpoint to be used for handling file uploads. See the API Usage Guide for more information.
Upload a file to the temporary file storage area and receive a temporary file ID.
Use any parameter key to upload your file. The API endpoint will retrieve the first uploaded file.
null
{- "documentType": "string",
- "id": 0,
- "mimetype": "string",
- "name": "string"
}
Private endpoints for OJS's UI. These endpoints will be less stable between versions. We discourage their use in third-party plugins or applications.
This endpoint is used on the settings page to save payment plugin settings alongside the general journal settings for enabling payments and setting the currency.
None of these properties are required. In addition to paymentsEnabled
and currency
, you may pass any property that corresponds with a setting for an enabled paymethod
plugin.
... | string |
currency | string |
paymentsEnabled | boolean |
{- "paymentsEnabled": true,
- "currency": "string",
- "...": "string"
}
{- "name": [
- "You must provide a name to create a new user."
], - "roles": [
- "You must assign the user to one or more roles."
]
}
The user's public file directory supports files uploaded through the TinyMCE rich text editor. This is commonly used in context settings but is also available to all registered users through their profile biography.
Use the file
key to upload your file.
null
{- "url": "string"
}
This endpoint is for directly editing DOI registration agency plugin settings. It is used as part of the unified DOI management settings options in the UI.
Parameters in addition to those listed will be specific to the plugin and its settings.
automaticDeposit | boolean |
enabledRegistrationAgency | string |
property name* additional property | any |
{- "enabledRegistrationAgency": "string",
- "automaticDeposit": true
}
{- "enabledRegistrationAgency": "string",
- "automaticDeposit": true
}