Get Asset Uploaders

GET /api/v2/spaces/:space_id/asset_uploaders

Path Parameters

Name
Type
Description

space_id

string

Space UUID

Headers

Name
Type
Description

Authorization

string

Content-Type

string

application/vnd.api+json

Response

200 OK
{
  "data": [
    {
      "id": "3f7c664c-404f-4a2b-9371-8cce23430374",
      "type": "asset_uploaders",
      "attributes": {
        "name": "John Doe"
      }
    }
  ]
}

Example

curl -i --request GET \
  --url https://environment.monterosa.cloud/api/v2/spaces/64915552-05a1-4d4b-81c7-39a6d06374d3/asset_uploaders \
  --header 'Authorization: Bearer rJURvA6XuuHxG5RHauqR1yy64JQcTfGu' \
  --header 'Content-Type: application/vnd.api+json'

GET /api/v2/spaces/:space_id/asset_uploaders

Path Parameters

Name
Type
Description

space_id

string

Space UUID

Headers

Name
Type
Description

Authorization

string

Bearer token

Content-Type

string

application/vnd.api+json

Response

200 OK
{
  "data": [
    {
      "id": "3f7c664c-404f-4a2b-9371-8cce23430374",
      "type": "asset_uploaders",
      "attributes": {
        "name": "John Doe"
      }
    }
  ]
}

Example

curl -i --request GET \
  --url https://environment.monterosa.cloud/api/v2/spaces/64915552-05a1-4d4b-81c7-39a6d06374d3/asset_uploaders \
  --header 'Authorization: Bearer rJURvA6XuuHxG5RHauqR1yy64JQcTfGu' \
  --header 'Content-Type: application/vnd.api+json'

Last updated

Was this helpful?