GET api/event/{id}/docs

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ResponseResultOfAttachmentListResponse
NameDescriptionTypeAdditional information
Data

AttachmentListResponse

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "data": {
    "attachments": [
      {
        "url": "sample string 1",
        "label": "sample string 2"
      },
      {
        "url": "sample string 1",
        "label": "sample string 2"
      }
    ]
  },
  "message": "sample string 1"
}

application/octet-stream

Sample:
{"data":{"attachments":[{"url":"sample string 1","label":"sample string 2"},{"url":"sample string 1","label":"sample string 2"}]},"message":"sample string 1"}

application/xml, text/xml

Sample:
<ResponseResultOfAttachmentListResponseNKWnkahT xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BondMX.Api.Common.Global.Response">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/BondMX.Api.Common.Event.Response">
    <d2p1:Attachments>
      <d2p1:AttachmentResponse>
        <d2p1:Label>sample string 2</d2p1:Label>
        <d2p1:Url>sample string 1</d2p1:Url>
      </d2p1:AttachmentResponse>
      <d2p1:AttachmentResponse>
        <d2p1:Label>sample string 2</d2p1:Label>
        <d2p1:Url>sample string 1</d2p1:Url>
      </d2p1:AttachmentResponse>
    </d2p1:Attachments>
  </Data>
  <Message>sample string 1</Message>
</ResponseResultOfAttachmentListResponseNKWnkahT>