API

Get Panorama

GET https://evs-api.istaging.com/api/v1/panorama

Get panorama list

Query Parameters

Name
Type
Description

type

string

Pano / PanoCollection

id

string

ID's number (required if type present)

Headers

Name
Type
Description

tenant-token

string

Tenant's session token

[
    {     
        "id": "abc123",     
        "downloadUrl": "https://example.com",    
        "resizeUrl": "https://resize.example.com"    
        "name": "demoPano",    
        "index": 0,    
        "cubemapReady": false,    
        "cubemapLink": "https://cdn.istaging.com/USER_ID/PANO_ID/panoramas/cubemap_%s_xyz.jpg",
        "cubemapLinkPreview": "https://cdn.istaging.com/USER_ID/PANO_ID/panoramas/cubemap_preview_xyz.jpg",
    },
    {     
        "id": "1234",     
        "downloadUrl": "https://example.com",    
        "resizeUrl": "https://resize.example.com"    
        "name": "demoPano02",    
        "index": 0,    
        "cubemapReady": false,    
        "cubemapLink": "https://cdn.istaging.com/USER_ID/PANO_ID/panoramas/cubemap_%s_xyz.jpg",
        "cubemapLinkPreview": "https://cdn.istaging.com/USER_ID/PANO_ID/panoramas/cubemap_preview_xyz.jpg"
    }
]

Create Panorama

POST https://evs-api.istaging.com/api/v1/panorama

Create (multiple) Panorama

Headers

Name
Type
Description

tenant-token

string

Tenant's session token

Request Body

Name
Type
Description

panoramas

array

downloadUrl

string

Panorama Download Link

index

integer

Panorama Index

name

string

Panorama Name

Create PanoCollection

POST https://evs-api.istaging.com/api/v1/panoCollection

Headers

Name
Type
Description

tenant-token

string

Tenant's session token

Request Body

Name
Type
Description

panoramaIdList

array

Panorama ID List

name

string

Name of this collection

Get PanoCollection

GET https://evs-api.istaging.com/api/v1/panoCollection

Headers

Name
Type
Description

tenant-token

string

Create Platform Account

POST https://evs-api.istaging.com/api/v1/platformAccount/signup

Headers

Name
Type
Description

istaging-api-key

string

iStating API Key

Request Body

Name
Type
Description

password

string

Account's password

email

string

Account's email

Signup Tenant

POST https://evs-api.istaging.com/api/v1/tenant/signup

Use platform account token to signup tenant account

Headers

Name
Type
Description

platform-account-token

string

Platform account token

Request Body

Name
Type
Description

username

string

Tenant's username

password

string

Tenant's Password

Tenant Login

POST https://evs-api.istaging.com/api/v1/tenant/login

Tenant use username and password to login and to get token

Request Body

Name
Type
Description

password

string

Tenant's password

username

string

Tenant's Username

Last updated