A combination of an Author associated with a particular user.

Writable Fields:

user: The API URL of the User to associate with this UserAuthor

author: The API URL of the Author to associate with this UserAuthor

Read-only Fields:

url: Reference to the instance of the UserAuthor, final integer is the UserAuthor id

last_updated: Datetime that this record was last updated

updated_by: Reference to the user that updated this record

GET /api/user_author/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "https://data.fairdatapipeline.org/api/user_author/1/?format=api",
            "last_updated": "2024-02-09T15:36:24.781302Z",
            "updated_by": "https://data.fairdatapipeline.org/api/users/2/?format=api",
            "user": "https://data.fairdatapipeline.org/api/users/2/?format=api",
            "author": "https://data.fairdatapipeline.org/api/author/1/?format=api"
        }
    ]
}