GET api/Studio
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
StudioApiModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CreateDate |
The date the studio was created |
date |
None. |
| CreateDays |
The number of days ago the studio was created |
integer |
None. |
| CustomerType |
The type of customer |
integer |
None. |
| CustomerTypeDescription |
A description of the type of customer |
string |
None. |
| Name |
The name of the studio or business |
string |
None. |
| LogoOriginal |
The business's logo |
string |
None. |
| LogoThumb |
A thumb of the business's logo |
string |
None. |
| StudioType |
The type of studio/business |
string |
None. |
| BusinessPortal |
The URL to the studio's business portal |
string |
None. |
| PersonName |
The name of the authenticated person |
string |
None. |
| Websites |
List of studio/business websites |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CreateDate": "2026-01-16T23:54:58.3068062-05:00",
"CreateDays": 1,
"CustomerType": 2,
"CustomerTypeDescription": "sample string 3",
"Name": "sample string 4",
"LogoOriginal": "sample string 5",
"LogoThumb": "sample string 6",
"StudioType": "sample string 7",
"BusinessPortal": "sample string 8",
"PersonName": "sample string 9",
"Websites": "sample string 10"
}
application/xml, text/xml
Sample:
<StudioApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Studioware.Models.api"> <BusinessPortal>sample string 8</BusinessPortal> <CreateDate>2026-01-16T23:54:58.3068062-05:00</CreateDate> <CreateDays>1</CreateDays> <CustomerType>2</CustomerType> <CustomerTypeDescription>sample string 3</CustomerTypeDescription> <LogoOriginal>sample string 5</LogoOriginal> <LogoThumb>sample string 6</LogoThumb> <Name>sample string 4</Name> <PersonName>sample string 9</PersonName> <StudioType>sample string 7</StudioType> <Websites>sample string 10</Websites> </StudioApiModel>