SignageWallDevelopers

API guide

Organization

Confirm the tenant associated with a Partner credential.

Get organization

GET /api/partner/v1/organization Any credential

This route requires a valid credential but no resource scope. The organization is derived from the authenticated credential and cannot be selected through a header or query parameter.

bash
curl --url "https://api.signagewall.com/api/partner/v1/organization" \
  --header "Authorization: Bearer $SIGNAGEWALL_PARTNER_API_KEY"

Response

json
{
  "data": {
    "id": "organization_id",
    "name": "Example organization",
    "slug": "example-organization"
  }
}