Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.31 KB

DictionaryInfoApi.md

File metadata and controls

47 lines (29 loc) · 1.31 KB

DictionaryInfoApi

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
get_dictionary_info GET /service/{service_id}/version/{version_id}/dictionary/{dictionary_id}/info Get edge dictionary metadata

get_dictionary_info

Retrieve metadata for a single dictionary by ID for a version and service.

let cfg = &Configuration::default();
let params = GetDictionaryInfoParams {
    // parameters
};
get_dictionary_info(cfg, params)

Parameters

Name Type Description Required Notes
service_id String Alphanumeric string identifying the service. [required]
version_id i32 Integer identifying a service version. [required]
dictionary_id String Alphanumeric string identifying a Dictionary. [required]

Return type

crate::models::DictionaryInfoResponse

Authorization

token

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to README]