Add Variant From Url
POST/apps/:app_id/variant/from-service
Add a new variant to an app based on a URL.
Args: app_id (str): The ID of the app to add the variant to. payload (AddVariantFromURLPayload): The payload containing information about the variant to add.
Raises: HTTPException: If the user does not have access to the app or if there is an error adding the variant.
Returns: dict: The newly added variant.
Request
Path Parameters
app_id App Idrequired
- application/json
Body
required
- MOD1
- MOD1
variant_name Variant Name (string)required
url Url (string)required
base_nameobjectrequired
anyOf
string
config_nameobjectrequired
anyOf
string
Responses
- 200
- 422
Successful Response
- application/json
- Schema
Schema
- any
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...