URL
http://api.fonts.com/rest/{format}/Domains/
Required Header Parameters
-
authorization
Hashed authorization key
-
appkey
Your application’s key
Required Query String Parameters
-
wfspid
The project id
-
wfsdomain_id
Domain id to be deleted
Optional Query String Parameters
-
wfsnopublish
This command automatically calls Publish once it is complete, which takes multiple seconds. To prevent this, use this parameter, set it to 1, and use Publish after all changes are made.
-
wfspstart
starting record requested (zero-based)
-
wfsplimit
# of records requested
Response variables
-
Message
If the response is successful then the “message” parameter of the response will be “Success” and if there is some error or failure then the “message” parameter will be the error message.
-
ProjectID
Project ID
-
Domain: DomainID
The Identifier for the domain
-
Domain: DomainName
The domain string
-
TotalRecords
Total number of records
-
PageStart
starting record requested (zero-based)
-
PageLimit
# of records requested
Sample Code
xml Response
<Domains>
<ProjectID>7bff9927-7964-4f6f-a132-adcae35ad51f</ProjectID>
<Message>Success</Message>
<Domain>
<DomainID>748f683b-822a-4212-95bf-597e3e8549db</DomainID>
<DomainName>*.domain.com</DomainName>
</Domain>
<TotalRecords>1</TotalRecords>
<PageStart>0</PageStart>
<PageLimit>10</PageLimit>
</Domains>
json Response
{
"Domains":{
"Domain":{
"DomainID":"748f683b-822a-4212-95bf-597e3e8549db",
"DomainName":"*.domain.com"
},
"Message":"Success",
"PageLimit":"10",
"PageStart":"0",
"ProjectID":"7bff9927-7964-4f6f-a132-adcae35ad51f",
"TotalRecords":"1"
}
}