List all AI Gateway Dynamic Route Deployments.
GET
/accounts/{account_id}/ai-gateway/gateways/{gateway_id}/routes/{id}/deployments https://api.cloudflare.com/client/v4
List all AI Gateway Dynamic Route Deployments.
Parameters
path Path Parameters
| Name | Type |
|---|---|
account_id
required
| string |
gateway_id
required
| string |
id
required
| string |
Responses
200 application/json
Success
{ data: {
deployments: {
comment?: string | null;
created_at: string;
deployment_id: string;
version_id: string;
}[];
order_by: string;
order_by_direction: string;
page: number;
per_page: number;
};success: boolean; }
deployments: {
comment?: string | null;
created_at: string;
deployment_id: string;
version_id: string;
}[];
order_by: string;
order_by_direction: string;
page: number;
per_page: number;
};success: boolean; }
Client Errors
400 application/json
Bad Request
{ errors: { message: string; }[];result: {};success: boolean; }