Add a new domain to an org.
curl --request POST \
--url https://api.useinvent.com/orgs/{org_id}/domains \
--header 'Content-Type: application/json' \
--data '
{
"hostname": "<string>"
}
'{
"id": "<string>",
"hostname": "<string>",
"org_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}The ID of the org
Schema for creating a new domain
The domain string (e.g., example.com)
1 - 1024Detailed information about an org domain
Unique identifier for the domain
The hostname string (e.g., example.com)
Identifier of the org that owns this domain
Timestamp when the domain was created
Timestamp when the domain was last updated
Was this page helpful?
curl --request POST \
--url https://api.useinvent.com/orgs/{org_id}/domains \
--header 'Content-Type: application/json' \
--data '
{
"hostname": "<string>"
}
'{
"id": "<string>",
"hostname": "<string>",
"org_id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}