POST CreateComic

Request Information

URI Parameters

None.

Body Parameters

ComicViewModel
NameDescriptionTypeAdditional information
ComicName

string

None.

AuthorName

string

None.

GenreId

globally unique identifier

None.

Language

string

None.

Description

string

None.

BannerImage

string

None.

CoverImage

string

None.

AuthorId

globally unique identifier

None.

ProfileDescriptionUrl

string

None.

id

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "ComicName": "sample string 1",
  "AuthorName": "sample string 2",
  "GenreId": "bd2d8d0a-cf3c-47cb-9373-59de178b211a",
  "Language": "sample string 4",
  "Description": "sample string 5",
  "BannerImage": "sample string 6",
  "CoverImage": "sample string 7",
  "AuthorId": "6bdfc6af-13d7-49a1-9934-8a1f74f798f9",
  "ProfileDescriptionUrl": "sample string 9",
  "id": "f5cca945-ca19-42fe-a2f7-8e53baae45cd"
}

application/xml, text/xml

Sample:
<ComicViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/COMIC.Controllers">
  <AuthorId>6bdfc6af-13d7-49a1-9934-8a1f74f798f9</AuthorId>
  <AuthorName>sample string 2</AuthorName>
  <BannerImage>sample string 6</BannerImage>
  <ComicName>sample string 1</ComicName>
  <CoverImage>sample string 7</CoverImage>
  <Description>sample string 5</Description>
  <GenreId>bd2d8d0a-cf3c-47cb-9373-59de178b211a</GenreId>
  <Language>sample string 4</Language>
  <ProfileDescriptionUrl>sample string 9</ProfileDescriptionUrl>
  <id>f5cca945-ca19-42fe-a2f7-8e53baae45cd</id>
</ComicViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.