POST api/foto

Request Information

URI Parameters

None.

Body Parameters

ProfilePhoto
NameDescriptionTypeAdditional information
imagen

Collection of byte

None.

u

string

None.

t

string

None.

id

string

None.

Request Formats

application/json, text/json

Sample:
{
  "imagen": "QEA=",
  "u": "sample string 1",
  "t": "sample string 2",
  "id": "sample string 3"
}

application/xml, text/xml

Sample:
<ProfilePhoto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models">
  <id>sample string 3</id>
  <imagen>QEA=</imagen>
  <t>sample string 2</t>
  <u>sample string 1</u>
</ProfilePhoto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Respuesta
NameDescriptionTypeAdditional information
resultado

integer

None.

mensaje

string

None.

data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "resultado": 1,
  "mensaje": "sample string 2",
  "data": {}
}

application/xml, text/xml

Sample:
<Respuesta xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VocabloAPI.Models">
  <data />
  <mensaje>sample string 2</mensaje>
  <resultado>1</resultado>
</Respuesta>