PUT api/OrganizerLogo/{id}

Stores the data using the provided id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The id for which the provided image should be stored

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The operation outcome

Response
NameDescriptionTypeAdditional information
Outcome

Indicates if the opartion done worked without any errors (true) or not (false)

boolean

None.

AdditionalInformation

Provides additional information in case of an error

AdditionalInformationModel

None.

ImageUrlBase

The generated image url base to access the uploaded image(s)

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Outcome": true,
  "AdditionalInformation": {
    "Message": "sample string 1",
    "Stacktrace": "sample string 2"
  },
  "ImageUrlBase": "sample string 2"
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FIBA3x3_MediaApi.Models">
  <AdditionalInformation>
    <Message>sample string 1</Message>
    <Stacktrace>sample string 2</Stacktrace>
  </AdditionalInformation>
  <ImageUrlBase>sample string 2</ImageUrlBase>
  <Outcome>true</Outcome>
</Response>