You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Retrieves a bulk list of custom fields attached to a particular resource by using the resource and resource IDs. The resource_ids query parameter is required and can accept multiple comma-separated values. Optional filters for keys and namespaces can also be applied.
980
+
:param resource : This is the name of resource for which you want to fetch custom fields eg. product, collection, customer etc. : type string
981
+
:param resource_ids : This is the resource ids for which custom fields created with comma separated. : type string
982
+
:param keys : Filter custom fields by specific keys (slugs). Multiple values can be provided as comma-separated. : type string
983
+
:param namespaces : Filter custom fields by specific namespaces. Multiple values can be provided as comma-separated. : type string
url_with_params=awaitcreate_url_with_params(api_url=self._urls["getBulkCustomFieldsByResource"], proccessed_params="""{"required":[{"name":"resource","in":"path","required":true,"schema":{"type":"string"},"description":"This is the name of resource for which you want to fetch custom fields eg. product, collection, customer etc."},{"name":"resource_ids","description":"This is the resource ids for which custom fields created with comma separated.","in":"query","required":true,"schema":{"type":"string"}}],"optional":[{"name":"keys","in":"query","required":false,"description":"Filter custom fields by specific keys (slugs). Multiple values can be provided as comma-separated.","schema":{"type":"string"},"example":"brand_story,designer_name"},{"name":"namespaces","in":"query","required":false,"description":"Filter custom fields by specific namespaces. Multiple values can be provided as comma-separated.","schema":{"type":"string"},"example":"custom"}],"query":[{"name":"resource_ids","description":"This is the resource ids for which custom fields created with comma separated.","in":"query","required":true,"schema":{"type":"string"}},{"name":"keys","in":"query","required":false,"description":"Filter custom fields by specific keys (slugs). Multiple values can be provided as comma-separated.","schema":{"type":"string"},"example":"brand_story,designer_name"},{"name":"namespaces","in":"query","required":false,"description":"Filter custom fields by specific namespaces. Multiple values can be provided as comma-separated.","schema":{"type":"string"},"example":"custom"}],"headers":[],"path":[{"name":"resource","in":"path","required":true,"schema":{"type":"string"},"description":"This is the name of resource for which you want to fetch custom fields eg. product, collection, customer etc."}]}""", serverType="application", resource=resource, resource_ids=resource_ids, keys=keys, namespaces=namespaces)
0 commit comments