643 matches
Infrastructure/ZEIT
Gets a list of domains registered for the authenticating user.
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
{
"type": "object",
"properties": {
"teamId": {
"type": "string"
}
},
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
{
"type": "object",
"required": [
"domains"
],
"properties": {
"domains": {
"type": "array",
"description": "An Array of domains for the given account",
"items": {
"type": "object",
"required": [
"boughtAt",
"cdnEnabled",
"createdAt",
"expiresAt",
"id",
"intendedNameservers",
"name",
"nameservers",
"nsVerifiedAt",
"serviceType",
"txtVerifiedAt",
"verificationRecord",
"verified"
],
"properties": {
"boughtAt": {
"type": "integer",
"description": "A timestamp to tell when the domain was purchase if it was purchased with ZEIT"
},
"cdnEnabled": {
"type": "boolean",
"description": "Wether the Cloudfare CDN is enabled for the domain or not"
},
"createdAt": {
"type": "integer",
"description": "A timestamp that shows when the domain was created"
},
"expiresAt": {
"type": "integer",
"description": "The expiration date for the domain in case it's in ZEIT"
},
"id": {
"type": "string",
"description": "The unique identifier of the domain."
},
"intendedNameservers": {
"type": "array",
"description": "The set of nameservers ZEIT requires the user to set to verify the domain with Nameservers",
"items": {
"type": "string",
"description": "An intended nameserver for the domain"
}
},
"name": {
"type": "string",
"description": "The domain name including the TLD"
},
"nameservers": {
"type": "array",
"description": "The current nameservers we have detected for the domain",
"items": {
"type": "string",
"description": "A nameserver the domain has set"
}
},
"nsVerifiedAt": {
"type": "integer",
"description": "The timestamp of the last time the domain was verified using Nameservers"
},
"orderedAt": {
"type": "integer",
"description": "A timestamp indicating when the domain was ordered if it was purchased with ZEIT"
},
"serviceType": {
"type": "string",
"description": "Indicates the current DNS service the domain is using",
"enum": [
"zeit.world",
"external",
"na"
]
},
"transferredAt": {
"type": "integer",
"description": "If the domain was transferred to ZEIT, it indicates the timestamp for when the transfer was started"
},
"txtVerifiedAt": {
"type": "integer",
"description": "The timestamp of the last time the domain was verified using a TXT record"
},
"verificationRecord": {
"type": "string",
"description": "Indicates the verification record that should be used to verify the domain using a TXT record"
},
"verified": {
"type": "boolean",
"description": "Indicates if the domain ownership was already verified"
}
}
}
}
}
}