Skip to main content
POST
/
support
/
guides
/
v1
Create a guide
curl --request POST \
  --url https://api.spacebring.com/support/guides/v1 \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "guide": {
    "locationRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>",
    "visibility": "public",
    "description": "<string>",
    "media": []
  }
}
'
{
  "guide": {
    "createDate": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "locale": "<string>",
    "locationRef": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "media": [
      {
        "create_date": "2023-11-07T05:31:56Z",
        "height": 123,
        "key": "<string>",
        "mime": "<string>",
        "url": "<string>",
        "width": 123
      }
    ],
    "title": "<string>",
    "visibility": "public"
  }
}

Authorizations

Authorization
string
header
required

See our authentication documentation for how to authorize your requests

Headers

spacebring-network-id
string<uuid>

The id of the network. Required when using bearer token authentication

Body

application/json
guide
object
required

Response

Created

guide
object