Skip to main content
GET
/
placements
/
{id}
Get placement
curl --request GET \
  --url https://api.gospott.com/placements/{id} \
  --header 'x-api-key: <api-key>'
{
  "fee": {
    "net": {
      "amount": 10000,
      "currency": "EUR"
    },
    "splits": [
      {
        "user": {
          "id": "<string>",
          "name": "<string>",
          "avatarUrl": "<string>",
          "deactivatedAt": "2023-11-07T05:31:56Z"
        },
        "percentage": 123
      }
    ],
    "id": "<string>"
  },
  "applicationId": "<string>",
  "attributeValues": [
    {
      "value": {
        "viewType": "customText",
        "text": "<string>"
      },
      "id": "<string>",
      "attributeDefinitionId": "<string>"
    }
  ],
  "id": "<string>",
  "templateId": "<string>",
  "placedByUser": {
    "id": "<string>",
    "name": "<string>",
    "avatarUrl": "<string>",
    "deactivatedAt": "2023-11-07T05:31:56Z"
  },
  "placedAt": "2023-11-07T05:31:56Z",
  "startDate": "2023-11-07T05:31:56Z",
  "endDate": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Response

fee
object
required
applicationId
string
required
attributeValues
object[]
required
id
string
required
templateId
string
required
placedByUser
object
required
placedAt
string<date-time>
required
startDate
string<date-time> | null
required
endDate
string<date-time> | null
required