openapi: 3.2.0 info: title: EFFECT Photonics WordPress REST Wp/v2 API version: wp/v2 summary: The live WordPress REST API served by the EFFECT Photonics corporate website. description: 'Derived verbatim from the route-discovery document the EFFECT Photonics web server publishes at https://effectphotonics.com/wp-json/ (fetched 2026-08-12, HTTP 200). Every path, method, parameter name, type, default and enum in this document was read from that live response; nothing was invented. This is the content-management API of the corporate marketing site, not a product, network-management or optical-transceiver API. EFFECT Photonics is an optical-semiconductor company (coherent optical transceivers and monolithically integrated InP photonic circuits) and publishes no developer product API, no developer portal and no SDK. The surface is catalogued because it is a real, live, self-describing HTTP contract on the provider''s own host, because it carries a first-party custom namespace (`effect/v1`), and because the same install exposes two Model Context Protocol servers under the `mcp` namespace guarded by an OAuth 2.1 authorization server (see mcp/effect-photonics-mcp.yml). Only the WordPress core and first-party namespaces are represented (`wp/v2`, `wp-abilities/v1`, `mcp`, `oembed/1.0`, `effect/v1`, and the root index). Third-party plugin namespaces advertised by the same discovery document (akismet/v1, litespeed/v1, litespeed/v3, yoast/v1, connector/v1, duplicate-post/v1, wp-site-health/v1, wp-block-editor/v1) are intentionally excluded as vendor plugin internals.' x-derived-from: https://effectphotonics.com/wp-json/ x-derived-on: '2026-08-12' x-apievangelist-method: derived servers: - url: https://effectphotonics.com description: Production tags: - name: wp/v2 description: WordPress core content API (posts, pages, media, custom post types, taxonomies, users, settings). Public read on published content; writes and privileged reads are capability-gated. paths: /wp-json/wp/v2: get: operationId: getWpV2 summary: GET /wp/v2 description: WordPress REST API route `/wp/v2` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: namespace in: query schema: default: wp/v2 - name: context in: query schema: default: view responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts: get: operationId: getWpV2Posts summary: GET /wp/v2/posts description: WordPress REST API route `/wp/v2/posts` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: categories in: query schema: type: object description: Limit result set to items with specific terms assigned in the categories taxonomy. - name: categories_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the categories taxonomy. - name: tags in: query schema: type: object description: Limit result set to items with specific terms assigned in the tags taxonomy. - name: tags_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the tags taxonomy. - name: sticky in: query schema: type: boolean description: Limit result set to items that are sticky. - name: ignore_sticky in: query schema: type: boolean default: true description: Whether to ignore sticky posts or not. - name: format in: query schema: type: array items: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: Limit result set to items assigned one or more given formats. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Posts summary: POST /wp/v2/posts description: WordPress REST API route `/wp/v2/posts` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. format: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts/{id}: get: operationId: getWpV2PostsId summary: GET /wp/v2/posts/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query schema: type: integer description: Override the default excerpt length. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PostsId summary: POST /wp/v2/posts/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id001 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id002 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id003 - open - closed description: Whether or not the post can be pinged. format: type: string enum: &id004 - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2PostsId summary: PUT /wp/v2/posts/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id001 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id002 description: Whether or not comments are open on the post. ping_status: type: string enum: *id003 description: Whether or not the post can be pinged. format: type: string enum: *id004 description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2PostsId summary: PATCH /wp/v2/posts/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id001 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id002 description: Whether or not comments are open on the post. ping_status: type: string enum: *id003 description: Whether or not the post can be pinged. format: type: string enum: *id004 description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PostsId summary: DELETE /wp/v2/posts/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts/{parent}/revisions: get: operationId: getWpV2PostsParentRevisions summary: GET /wp/v2/posts/{parent}/revisions description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts/{parent}/revisions/{id}: get: operationId: getWpV2PostsParentRevisionsId summary: GET /wp/v2/posts/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PostsParentRevisionsId summary: DELETE /wp/v2/posts/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts/{id}/autosaves: get: operationId: getWpV2PostsIdAutosaves summary: GET /wp/v2/posts/{id}/autosaves description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PostsIdAutosaves summary: POST /wp/v2/posts/{id}/autosaves description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. format: type: string enum: - standard - aside - chat - gallery - link - image - quote - status - video - audio description: The format for the post. meta: type: object description: Meta fields. sticky: type: boolean description: Whether or not the post should be treated as sticky. template: type: string description: The theme file to use to display the post. categories: type: array items: type: integer description: The terms assigned to the post in the category taxonomy. tags: type: array items: type: integer description: The terms assigned to the post in the post_tag taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/posts/{parent}/autosaves/{id}: get: operationId: getWpV2PostsParentAutosavesId summary: GET /wp/v2/posts/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/posts/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages: get: operationId: getWpV2Pages summary: GET /wp/v2/pages description: WordPress REST API route `/wp/v2/pages` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: menu_order in: query schema: type: integer description: Limit result set to posts with a specific menu_order value. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: date description: Sort collection by post attribute. - name: parent in: query schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Pages summary: POST /wp/v2/pages description: WordPress REST API route `/wp/v2/pages` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages/{id}: get: operationId: getWpV2PagesId summary: GET /wp/v2/pages/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query schema: type: integer description: Override the default excerpt length. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PagesId summary: POST /wp/v2/pages/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id005 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id006 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id007 - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2PagesId summary: PUT /wp/v2/pages/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id005 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id006 description: Whether or not comments are open on the post. ping_status: type: string enum: *id007 description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2PagesId summary: PATCH /wp/v2/pages/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id005 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id006 description: Whether or not comments are open on the post. ping_status: type: string enum: *id007 description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PagesId summary: DELETE /wp/v2/pages/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages/{parent}/revisions: get: operationId: getWpV2PagesParentRevisions summary: GET /wp/v2/pages/{parent}/revisions description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages/{parent}/revisions/{id}: get: operationId: getWpV2PagesParentRevisionsId summary: GET /wp/v2/pages/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PagesParentRevisionsId summary: DELETE /wp/v2/pages/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages/{id}/autosaves: get: operationId: getWpV2PagesIdAutosaves summary: GET /wp/v2/pages/{id}/autosaves description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PagesIdAutosaves summary: POST /wp/v2/pages/{id}/autosaves description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the post. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. excerpt: type: object description: The excerpt for the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. menu_order: type: integer description: The order of the post in relation to other posts. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pages/{parent}/autosaves/{id}: get: operationId: getWpV2PagesParentAutosavesId summary: GET /wp/v2/pages/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/pages/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/media: get: operationId: getWpV2Media summary: GET /wp/v2/media description: WordPress REST API route `/wp/v2/media` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: parent in: query schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: inherit items: type: string enum: - inherit - private - trash description: Limit result set to posts assigned one or more statuses. - name: media_type in: query schema: type: array default: null items: type: string enum: - image - video - text - application - audio - model description: Limit result set to attachments of a particular media type or media types. - name: mime_type in: query schema: type: array default: null items: type: string description: Limit result set to attachments of a particular MIME type or MIME types. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Media summary: POST /wp/v2/media description: WordPress REST API route `/wp/v2/media` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/media/{id}: get: operationId: getWpV2MediaId summary: GET /wp/v2/media/{id} description: WordPress REST API route `/wp/v2/media/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2MediaId summary: POST /wp/v2/media/{id} description: WordPress REST API route `/wp/v2/media/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id008 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id009 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id010 - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2MediaId summary: PUT /wp/v2/media/{id} description: WordPress REST API route `/wp/v2/media/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id008 description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id009 description: Whether or not comments are open on the post. ping_status: type: string enum: *id010 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2MediaId summary: PATCH /wp/v2/media/{id} description: WordPress REST API route `/wp/v2/media/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id008 description: A named status for the post. title: type: object description: The title for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id009 description: Whether or not comments are open on the post. ping_status: type: string enum: *id010 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. alt_text: type: string description: Alternative text to display when attachment is not displayed. caption: type: object description: The attachment caption. description: type: object description: The attachment description. post: type: integer description: The ID for the associated post of the attachment. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2MediaId summary: DELETE /wp/v2/media/{id} description: WordPress REST API route `/wp/v2/media/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/media/{id}/post-process: post: operationId: postWpV2MediaIdPostProcess summary: POST /wp/v2/media/{id}/post-process description: WordPress REST API route `/wp/v2/media/(?P[\d]+)/post-process` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: action: type: string enum: - create-image-subsizes required: - action responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/media/{id}/edit: post: operationId: postWpV2MediaIdEdit summary: POST /wp/v2/media/{id}/edit description: WordPress REST API route `/wp/v2/media/(?P[\d]+)/edit` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: src: type: string format: uri description: URL to the edited image file. modifiers: type: array items: type: object description: Array of image edits. rotation: type: integer minimum: 0 maximum: 360 description: 'The amount to rotate the image clockwise in degrees. DEPRECATED: Use `modifiers` instead.' x: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the x position to start the crop from. DEPRECATED: Use `modifiers` instead.' y: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the y position to start the crop from. DEPRECATED: Use `modifiers` instead.' width: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the width to crop the image to. DEPRECATED: Use `modifiers` instead.' height: type: number minimum: 0 maximum: 100 description: 'As a percentage of the image, the height to crop the image to. DEPRECATED: Use `modifiers` instead.' caption: type: object description: The attachment caption. description: type: object description: The attachment description. title: type: object description: The title for the post. post: type: integer description: The ID for the associated post of the attachment. alt_text: type: string description: Alternative text to display when attachment is not displayed. required: - src responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-items: get: operationId: getWpV2MenuItems summary: GET /wp/v2/menu-items description: WordPress REST API route `/wp/v2/menu-items` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 100 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - menu_order default: menu_order description: Sort collection by object attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: menus in: query schema: type: object description: Limit result set to items with specific terms assigned in the menus taxonomy. - name: menus_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the menus taxonomy. - name: menu_order in: query schema: type: integer description: Limit result set to posts with a specific menu_order value. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2MenuItems summary: POST /wp/v2/menu-items description: WordPress REST API route `/wp/v2/menu-items` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: title: type: string description: The title for the object. type: type: string enum: - taxonomy - post_type - post_type_archive - custom default: custom description: The family of objects originally represented, such as "post_type" or "taxonomy". status: type: string enum: - publish - future - draft - pending - private - acf-disabled default: publish description: A named status for the object. parent: type: integer default: 0 minimum: 0 description: The ID for the parent of the object. attr_title: type: string description: Text for the title attribute of the link element for this menu item. classes: type: array items: type: string description: Class names for the link element of this menu item. description: type: string description: The description of this menu item. menu_order: type: integer default: 1 minimum: 1 description: The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. object: type: string description: The type of object originally represented, such as "category", "post", or "attachment". object_id: type: integer default: 0 minimum: 0 description: The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. target: type: string enum: - _blank - '' description: The target attribute of the link element for this menu item. url: type: string format: uri description: The URL to which this menu item points. xfn: type: array items: type: string description: The XFN relationship expressed in the link of this menu item. menus: type: integer description: The terms assigned to the object in the nav_menu taxonomy. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-items/{id}: get: operationId: getWpV2MenuItemsId summary: GET /wp/v2/menu-items/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2MenuItemsId summary: POST /wp/v2/menu-items/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: title: type: string description: The title for the object. type: type: string enum: &id011 - taxonomy - post_type - post_type_archive - custom description: The family of objects originally represented, such as "post_type" or "taxonomy". status: type: string enum: &id012 - publish - future - draft - pending - private - acf-disabled description: A named status for the object. parent: type: integer minimum: 0 description: The ID for the parent of the object. attr_title: type: string description: Text for the title attribute of the link element for this menu item. classes: type: array items: type: string description: Class names for the link element of this menu item. description: type: string description: The description of this menu item. menu_order: type: integer minimum: 1 description: The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. object: type: string description: The type of object originally represented, such as "category", "post", or "attachment". object_id: type: integer minimum: 0 description: The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. target: type: string enum: &id013 - _blank - '' description: The target attribute of the link element for this menu item. url: type: string format: uri description: The URL to which this menu item points. xfn: type: array items: type: string description: The XFN relationship expressed in the link of this menu item. menus: type: integer description: The terms assigned to the object in the nav_menu taxonomy. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2MenuItemsId summary: PUT /wp/v2/menu-items/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: title: type: string description: The title for the object. type: type: string enum: *id011 description: The family of objects originally represented, such as "post_type" or "taxonomy". status: type: string enum: *id012 description: A named status for the object. parent: type: integer minimum: 0 description: The ID for the parent of the object. attr_title: type: string description: Text for the title attribute of the link element for this menu item. classes: type: array items: type: string description: Class names for the link element of this menu item. description: type: string description: The description of this menu item. menu_order: type: integer minimum: 1 description: The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. object: type: string description: The type of object originally represented, such as "category", "post", or "attachment". object_id: type: integer minimum: 0 description: The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. target: type: string enum: *id013 description: The target attribute of the link element for this menu item. url: type: string format: uri description: The URL to which this menu item points. xfn: type: array items: type: string description: The XFN relationship expressed in the link of this menu item. menus: type: integer description: The terms assigned to the object in the nav_menu taxonomy. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2MenuItemsId summary: PATCH /wp/v2/menu-items/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: title: type: string description: The title for the object. type: type: string enum: *id011 description: The family of objects originally represented, such as "post_type" or "taxonomy". status: type: string enum: *id012 description: A named status for the object. parent: type: integer minimum: 0 description: The ID for the parent of the object. attr_title: type: string description: Text for the title attribute of the link element for this menu item. classes: type: array items: type: string description: Class names for the link element of this menu item. description: type: string description: The description of this menu item. menu_order: type: integer minimum: 1 description: The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. object: type: string description: The type of object originally represented, such as "category", "post", or "attachment". object_id: type: integer minimum: 0 description: The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. target: type: string enum: *id013 description: The target attribute of the link element for this menu item. url: type: string format: uri description: The URL to which this menu item points. xfn: type: array items: type: string description: The XFN relationship expressed in the link of this menu item. menus: type: integer description: The terms assigned to the object in the nav_menu taxonomy. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2MenuItemsId summary: DELETE /wp/v2/menu-items/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-items/{id}/autosaves: get: operationId: getWpV2MenuItemsIdAutosaves summary: GET /wp/v2/menu-items/{id}/autosaves description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2MenuItemsIdAutosaves summary: POST /wp/v2/menu-items/{id}/autosaves description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer minimum: 0 description: The ID for the parent of the object. title: type: string description: The title for the object. type: type: string enum: - taxonomy - post_type - post_type_archive - custom description: The family of objects originally represented, such as "post_type" or "taxonomy". status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the object. attr_title: type: string description: Text for the title attribute of the link element for this menu item. classes: type: array items: type: string description: Class names for the link element of this menu item. description: type: string description: The description of this menu item. menu_order: type: integer minimum: 1 description: The DB ID of the nav_menu_item that is this item's menu parent, if any, otherwise 0. object: type: string description: The type of object originally represented, such as "category", "post", or "attachment". object_id: type: integer minimum: 0 description: The database ID of the original object this menu item represents, for example the ID for posts or the term_id for categories. target: type: string enum: - _blank - '' description: The target attribute of the link element for this menu item. url: type: string format: uri description: The URL to which this menu item points. xfn: type: array items: type: string description: The XFN relationship expressed in the link of this menu item. menus: type: integer description: The terms assigned to the object in the nav_menu taxonomy. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-items/{parent}/autosaves/{id}: get: operationId: getWpV2MenuItemsParentAutosavesId summary: GET /wp/v2/menu-items/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/menu-items/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks: get: operationId: getWpV2Blocks summary: GET /wp/v2/blocks description: WordPress REST API route `/wp/v2/blocks` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: wp_pattern_category in: query schema: type: object description: Limit result set to items with specific terms assigned in the wp_pattern_category taxonomy. - name: wp_pattern_category_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Blocks summary: POST /wp/v2/blocks description: WordPress REST API route `/wp/v2/blocks` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. wp_pattern_category: type: array items: type: integer description: The terms assigned to the post in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks/{id}: get: operationId: getWpV2BlocksId summary: GET /wp/v2/blocks/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: excerpt_length in: query schema: type: integer description: Override the default excerpt length. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2BlocksId summary: POST /wp/v2/blocks/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id014 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. wp_pattern_category: type: array items: type: integer description: The terms assigned to the post in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2BlocksId summary: PUT /wp/v2/blocks/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id014 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. wp_pattern_category: type: array items: type: integer description: The terms assigned to the post in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2BlocksId summary: PATCH /wp/v2/blocks/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id014 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. wp_pattern_category: type: array items: type: integer description: The terms assigned to the post in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2BlocksId summary: DELETE /wp/v2/blocks/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks/{parent}/revisions: get: operationId: getWpV2BlocksParentRevisions summary: GET /wp/v2/blocks/{parent}/revisions description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks/{parent}/revisions/{id}: get: operationId: getWpV2BlocksParentRevisionsId summary: GET /wp/v2/blocks/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2BlocksParentRevisionsId summary: DELETE /wp/v2/blocks/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks/{id}/autosaves: get: operationId: getWpV2BlocksIdAutosaves summary: GET /wp/v2/blocks/{id}/autosaves description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2BlocksIdAutosaves summary: POST /wp/v2/blocks/{id}/autosaves description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. excerpt: type: object description: The excerpt for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. wp_pattern_category: type: array items: type: integer description: The terms assigned to the post in the wp_pattern_category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/blocks/{parent}/autosaves/{id}: get: operationId: getWpV2BlocksParentAutosavesId summary: GET /wp/v2/blocks/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/blocks/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/{parent}/revisions: get: operationId: getWpV2TemplatesParentRevisions summary: GET /wp/v2/templates/{parent}/revisions description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/{parent}/revisions/{id}: get: operationId: getWpV2TemplatesParentRevisionsId summary: GET /wp/v2/templates/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TemplatesParentRevisionsId summary: DELETE /wp/v2/templates/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/{id}/autosaves: get: operationId: getWpV2TemplatesIdAutosaves summary: GET /wp/v2/templates/{id}/autosaves description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemplatesIdAutosaves summary: POST /wp/v2/templates/{id}/autosaves description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: Status of template. author: type: integer description: The ID for the author of the template. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/{parent}/autosaves/{id}: get: operationId: getWpV2TemplatesParentAutosavesId summary: GET /wp/v2/templates/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates: get: operationId: getWpV2Templates summary: GET /wp/v2/templates description: WordPress REST API route `/wp/v2/templates` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: wp_id in: query schema: type: integer description: Limit to the specified post id. - name: area in: query schema: type: string description: Limit to the specified template part area. - name: post_type in: query schema: type: string description: Post type to get the templates for. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Templates summary: POST /wp/v2/templates description: WordPress REST API route `/wp/v2/templates` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object default: '' description: Content of template. title: type: object default: '' description: Title of template. description: type: string default: '' description: Description of template. status: type: string enum: - publish - future - draft - pending - private - acf-disabled default: publish description: Status of template. author: type: integer description: The ID for the author of the template. required: - slug responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/lookup: get: operationId: getWpV2TemplatesLookup summary: GET /wp/v2/templates/lookup description: WordPress REST API route `/wp/v2/templates/lookup` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: slug in: query schema: type: string required: true description: The slug of the template to get the fallback for - name: is_custom in: query schema: type: boolean description: Indicates if a template is custom or part of the template hierarchy - name: template_prefix in: query schema: type: string description: The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy` responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/templates/{id}: get: operationId: getWpV2TemplatesId summary: GET /wp/v2/templates/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemplatesId summary: POST /wp/v2/templates/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: &id015 - publish - future - draft - pending - private - acf-disabled description: Status of template. author: type: integer description: The ID for the author of the template. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TemplatesId summary: PUT /wp/v2/templates/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: *id015 description: Status of template. author: type: integer description: The ID for the author of the template. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TemplatesId summary: PATCH /wp/v2/templates/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: *id015 description: Status of template. author: type: integer description: The ID for the author of the template. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TemplatesId summary: DELETE /wp/v2/templates/{id} description: WordPress REST API route `/wp/v2/templates/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/{parent}/revisions: get: operationId: getWpV2TemplatePartsParentRevisions summary: GET /wp/v2/template-parts/{parent}/revisions description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/{parent}/revisions/{id}: get: operationId: getWpV2TemplatePartsParentRevisionsId summary: GET /wp/v2/template-parts/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TemplatePartsParentRevisionsId summary: DELETE /wp/v2/template-parts/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/{id}/autosaves: get: operationId: getWpV2TemplatePartsIdAutosaves summary: GET /wp/v2/template-parts/{id}/autosaves description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemplatePartsIdAutosaves summary: POST /wp/v2/template-parts/{id}/autosaves description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: Status of template. author: type: integer description: The ID for the author of the template. area: type: string description: Where the template part is intended for use (header, footer, etc.) responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/{parent}/autosaves/{id}: get: operationId: getWpV2TemplatePartsParentAutosavesId summary: GET /wp/v2/template-parts/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts: get: operationId: getWpV2TemplateParts summary: GET /wp/v2/template-parts description: WordPress REST API route `/wp/v2/template-parts` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: wp_id in: query schema: type: integer description: Limit to the specified post id. - name: area in: query schema: type: string description: Limit to the specified template part area. - name: post_type in: query schema: type: string description: Post type to get the templates for. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemplateParts summary: POST /wp/v2/template-parts description: WordPress REST API route `/wp/v2/template-parts` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object default: '' description: Content of template. title: type: object default: '' description: Title of template. description: type: string default: '' description: Description of template. status: type: string enum: - publish - future - draft - pending - private - acf-disabled default: publish description: Status of template. author: type: integer description: The ID for the author of the template. area: type: string description: Where the template part is intended for use (header, footer, etc.) required: - slug responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/lookup: get: operationId: getWpV2TemplatePartsLookup summary: GET /wp/v2/template-parts/lookup description: WordPress REST API route `/wp/v2/template-parts/lookup` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: slug in: query schema: type: string required: true description: The slug of the template to get the fallback for - name: is_custom in: query schema: type: boolean description: Indicates if a template is custom or part of the template hierarchy - name: template_prefix in: query schema: type: string description: The template prefix for the created template. This is used to extract the main template type, e.g. in `taxonomy-books` extracts the `taxonomy` responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/template-parts/{id}: get: operationId: getWpV2TemplatePartsId summary: GET /wp/v2/template-parts/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemplatePartsId summary: POST /wp/v2/template-parts/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: &id016 - publish - future - draft - pending - private - acf-disabled description: Status of template. author: type: integer description: The ID for the author of the template. area: type: string description: Where the template part is intended for use (header, footer, etc.) responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TemplatePartsId summary: PUT /wp/v2/template-parts/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: *id016 description: Status of template. author: type: integer description: The ID for the author of the template. area: type: string description: Where the template part is intended for use (header, footer, etc.) responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TemplatePartsId summary: PATCH /wp/v2/template-parts/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: slug: type: string description: Unique slug identifying the template. theme: type: string description: Theme identifier for the template. type: type: string description: Type of template. content: type: object description: Content of template. title: type: object description: Title of template. description: type: string description: Description of template. status: type: string enum: *id016 description: Status of template. author: type: integer description: The ID for the author of the template. area: type: string description: Where the template part is intended for use (header, footer, etc.) responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TemplatePartsId summary: DELETE /wp/v2/template-parts/{id} description: WordPress REST API route `/wp/v2/template-parts/(?P([^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)[\/\w%-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/global-styles/{parent}/revisions: get: operationId: getWpV2GlobalStylesParentRevisions summary: GET /wp/v2/global-styles/{parent}/revisions description: WordPress REST API route `/wp/v2/global-styles/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/global-styles/{parent}/revisions/{id}: get: operationId: getWpV2GlobalStylesParentRevisionsId summary: GET /wp/v2/global-styles/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/global-styles/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/global-styles/themes/{stylesheet}/variations: get: operationId: getWpV2GlobalStylesThemesStylesheetVariations summary: GET /wp/v2/global-styles/themes/{stylesheet}/variations description: WordPress REST API route `/wp/v2/global-styles/themes/(?P[\/\s%\w\.\(\)\[\]\@_\-]+)/variations` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: stylesheet in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/global-styles/themes/{stylesheet}: get: operationId: getWpV2GlobalStylesThemesStylesheet summary: GET /wp/v2/global-styles/themes/{stylesheet} description: WordPress REST API route `/wp/v2/global-styles/themes/(?P[^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: stylesheet in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/global-styles/{id}: get: operationId: getWpV2GlobalStylesId summary: GET /wp/v2/global-styles/{id} description: WordPress REST API route `/wp/v2/global-styles/(?P[\/\d+]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2GlobalStylesId summary: POST /wp/v2/global-styles/{id} description: WordPress REST API route `/wp/v2/global-styles/(?P[\/\d+]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: styles: type: object description: Global styles. settings: type: object description: Global settings. title: type: object description: Title of the global styles variation. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2GlobalStylesId summary: PUT /wp/v2/global-styles/{id} description: WordPress REST API route `/wp/v2/global-styles/(?P[\/\d+]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: styles: type: object description: Global styles. settings: type: object description: Global settings. title: type: object description: Title of the global styles variation. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2GlobalStylesId summary: PATCH /wp/v2/global-styles/{id} description: WordPress REST API route `/wp/v2/global-styles/(?P[\/\d+]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: styles: type: object description: Global styles. settings: type: object description: Global settings. title: type: object description: Title of the global styles variation. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation: get: operationId: getWpV2Navigation summary: GET /wp/v2/navigation description: WordPress REST API route `/wp/v2/navigation` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Navigation summary: POST /wp/v2/navigation description: WordPress REST API route `/wp/v2/navigation` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation/{id}: get: operationId: getWpV2NavigationId summary: GET /wp/v2/navigation/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2NavigationId summary: POST /wp/v2/navigation/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id017 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2NavigationId summary: PUT /wp/v2/navigation/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id017 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2NavigationId summary: PATCH /wp/v2/navigation/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id017 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2NavigationId summary: DELETE /wp/v2/navigation/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation/{parent}/revisions: get: operationId: getWpV2NavigationParentRevisions summary: GET /wp/v2/navigation/{parent}/revisions description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation/{parent}/revisions/{id}: get: operationId: getWpV2NavigationParentRevisionsId summary: GET /wp/v2/navigation/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2NavigationParentRevisionsId summary: DELETE /wp/v2/navigation/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation/{id}/autosaves: get: operationId: getWpV2NavigationIdAutosaves summary: GET /wp/v2/navigation/{id}/autosaves description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2NavigationIdAutosaves summary: POST /wp/v2/navigation/{id}/autosaves description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. template: type: string description: The theme file to use to display the post. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/navigation/{parent}/autosaves/{id}: get: operationId: getWpV2NavigationParentAutosavesId summary: GET /wp/v2/navigation/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/navigation/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-families: get: operationId: getWpV2FontFamilies summary: GET /wp/v2/font-families description: WordPress REST API route `/wp/v2/font-families` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include default: id description: Sort collection by post attribute. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FontFamilies summary: POST /wp/v2/font-families description: WordPress REST API route `/wp/v2/font-families` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: theme_json_version: type: integer default: 3 minimum: 2 maximum: 3 description: Version of the theme.json schema used for the typography settings. font_family_settings: type: string description: font-family declaration in theme.json format, encoded as a string. required: - font_family_settings responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-families/{id}: get: operationId: getWpV2FontFamiliesId summary: GET /wp/v2/font-families/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FontFamiliesId summary: POST /wp/v2/font-families/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: theme_json_version: type: integer default: 3 minimum: 2 maximum: 3 description: Version of the theme.json schema used for the typography settings. font_family_settings: type: string description: font-family declaration in theme.json format, encoded as a string. required: - font_family_settings responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2FontFamiliesId summary: PUT /wp/v2/font-families/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: theme_json_version: type: integer default: 3 minimum: 2 maximum: 3 description: Version of the theme.json schema used for the typography settings. font_family_settings: type: string description: font-family declaration in theme.json format, encoded as a string. required: - font_family_settings responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2FontFamiliesId summary: PATCH /wp/v2/font-families/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: theme_json_version: type: integer default: 3 minimum: 2 maximum: 3 description: Version of the theme.json schema used for the typography settings. font_family_settings: type: string description: font-family declaration in theme.json format, encoded as a string. required: - font_family_settings responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FontFamiliesId summary: DELETE /wp/v2/font-families/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-families/{font_family_id}/font-faces: get: operationId: getWpV2FontFamiliesFontFamilyIdFontFaces summary: GET /wp/v2/font-families/{font_family_id}/font-faces description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)/font-faces` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: font_family_id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include default: id description: Sort collection by post attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FontFamiliesFontFamilyIdFontFaces summary: POST /wp/v2/font-families/{font_family_id}/font-faces description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)/font-faces` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: font_family_id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: theme_json_version: type: integer default: 3 minimum: 2 maximum: 3 description: Version of the theme.json schema used for the typography settings. font_face_settings: type: string description: font-face declaration in theme.json format, encoded as a string. required: - font_face_settings responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-families/{font_family_id}/font-faces/{id}: get: operationId: getWpV2FontFamiliesFontFamilyIdFontFacesId summary: GET /wp/v2/font-families/{font_family_id}/font-faces/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)/font-faces/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: font_family_id in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FontFamiliesFontFamilyIdFontFacesId summary: DELETE /wp/v2/font-families/{font_family_id}/font-faces/{id} description: WordPress REST API route `/wp/v2/font-families/(?P[\d]+)/font-faces/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: font_family_id in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq: get: operationId: getWpV2Faq summary: GET /wp/v2/faq description: WordPress REST API route `/wp/v2/faq` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: author in: query schema: type: array default: [] items: type: integer description: Limit result set to posts assigned to specific authors. - name: author_exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes posts assigned to specific authors. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: parent in: query schema: type: array default: [] items: type: integer description: Limit result set to items with particular parent IDs. - name: parent_exclude in: query schema: type: array default: [] items: type: integer description: Limit result set to all items except those of a particular parent ID. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: faq-category in: query schema: type: object description: Limit result set to items with specific terms assigned in the faq-category taxonomy. - name: faq-category_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Faq summary: POST /wp/v2/faq description: WordPress REST API route `/wp/v2/faq` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. faq-category: type: array items: type: integer description: The terms assigned to the post in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq/{id}: get: operationId: getWpV2FaqId summary: GET /wp/v2/faq/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FaqId summary: POST /wp/v2/faq/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id018 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: &id019 - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: &id020 - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. faq-category: type: array items: type: integer description: The terms assigned to the post in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2FaqId summary: PUT /wp/v2/faq/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id018 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id019 description: Whether or not comments are open on the post. ping_status: type: string enum: *id020 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. faq-category: type: array items: type: integer description: The terms assigned to the post in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2FaqId summary: PATCH /wp/v2/faq/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id018 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. parent: type: integer description: The ID for the parent of the post. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: *id019 description: Whether or not comments are open on the post. ping_status: type: string enum: *id020 description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. faq-category: type: array items: type: integer description: The terms assigned to the post in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FaqId summary: DELETE /wp/v2/faq/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq/{parent}/revisions: get: operationId: getWpV2FaqParentRevisions summary: GET /wp/v2/faq/{parent}/revisions description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq/{parent}/revisions/{id}: get: operationId: getWpV2FaqParentRevisionsId summary: GET /wp/v2/faq/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FaqParentRevisionsId summary: DELETE /wp/v2/faq/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq/{id}/autosaves: get: operationId: getWpV2FaqIdAutosaves summary: GET /wp/v2/faq/{id}/autosaves description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FaqIdAutosaves summary: POST /wp/v2/faq/{id}/autosaves description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the post. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. author: type: integer description: The ID for the author of the post. featured_media: type: integer description: The ID of the featured media for the post. comment_status: type: string enum: - open - closed description: Whether or not comments are open on the post. ping_status: type: string enum: - open - closed description: Whether or not the post can be pinged. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. faq-category: type: array items: type: integer description: The terms assigned to the post in the faq-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq/{parent}/autosaves/{id}: get: operationId: getWpV2FaqParentAutosavesId summary: GET /wp/v2/faq/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/faq/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner: get: operationId: getWpV2Partner summary: GET /wp/v2/partner description: WordPress REST API route `/wp/v2/partner` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: partner-category in: query schema: type: object description: Limit result set to items with specific terms assigned in the partner-category taxonomy. - name: partner-category_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Partner summary: POST /wp/v2/partner description: WordPress REST API route `/wp/v2/partner` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. partner-category: type: array items: type: integer description: The terms assigned to the post in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner/{id}: get: operationId: getWpV2PartnerId summary: GET /wp/v2/partner/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PartnerId summary: POST /wp/v2/partner/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id021 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. partner-category: type: array items: type: integer description: The terms assigned to the post in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2PartnerId summary: PUT /wp/v2/partner/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id021 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. partner-category: type: array items: type: integer description: The terms assigned to the post in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2PartnerId summary: PATCH /wp/v2/partner/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id021 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. partner-category: type: array items: type: integer description: The terms assigned to the post in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PartnerId summary: DELETE /wp/v2/partner/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner/{parent}/revisions: get: operationId: getWpV2PartnerParentRevisions summary: GET /wp/v2/partner/{parent}/revisions description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner/{parent}/revisions/{id}: get: operationId: getWpV2PartnerParentRevisionsId summary: GET /wp/v2/partner/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PartnerParentRevisionsId summary: DELETE /wp/v2/partner/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner/{id}/autosaves: get: operationId: getWpV2PartnerIdAutosaves summary: GET /wp/v2/partner/{id}/autosaves description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PartnerIdAutosaves summary: POST /wp/v2/partner/{id}/autosaves description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. partner-category: type: array items: type: integer description: The terms assigned to the post in the partner-category taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner/{parent}/autosaves/{id}: get: operationId: getWpV2PartnerParentAutosavesId summary: GET /wp/v2/partner/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/partner/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/team: get: operationId: getWpV2Team summary: GET /wp/v2/team description: WordPress REST API route `/wp/v2/team` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: function in: query schema: type: object description: Limit result set to items with specific terms assigned in the function taxonomy. - name: function_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the function taxonomy. - name: location in: query schema: type: object description: Limit result set to items with specific terms assigned in the location taxonomy. - name: location_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Team summary: POST /wp/v2/team description: WordPress REST API route `/wp/v2/team` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. function: type: array items: type: integer description: The terms assigned to the post in the function taxonomy. location: type: array items: type: integer description: The terms assigned to the post in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/team/{id}: get: operationId: getWpV2TeamId summary: GET /wp/v2/team/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TeamId summary: POST /wp/v2/team/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id022 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. function: type: array items: type: integer description: The terms assigned to the post in the function taxonomy. location: type: array items: type: integer description: The terms assigned to the post in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TeamId summary: PUT /wp/v2/team/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id022 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. function: type: array items: type: integer description: The terms assigned to the post in the function taxonomy. location: type: array items: type: integer description: The terms assigned to the post in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TeamId summary: PATCH /wp/v2/team/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id022 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. function: type: array items: type: integer description: The terms assigned to the post in the function taxonomy. location: type: array items: type: integer description: The terms assigned to the post in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TeamId summary: DELETE /wp/v2/team/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/team/{id}/autosaves: get: operationId: getWpV2TeamIdAutosaves summary: GET /wp/v2/team/{id}/autosaves description: WordPress REST API route `/wp/v2/team/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TeamIdAutosaves summary: POST /wp/v2/team/{id}/autosaves description: WordPress REST API route `/wp/v2/team/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. function: type: array items: type: integer description: The terms assigned to the post in the function taxonomy. location: type: array items: type: integer description: The terms assigned to the post in the location taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/team/{parent}/autosaves/{id}: get: operationId: getWpV2TeamParentAutosavesId summary: GET /wp/v2/team/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/team/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career: get: operationId: getWpV2Career summary: GET /wp/v2/career description: WordPress REST API route `/wp/v2/career` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: career_department in: query schema: type: object description: Limit result set to items with specific terms assigned in the career_department taxonomy. - name: career_department_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the career_department taxonomy. - name: career_location in: query schema: type: object description: Limit result set to items with specific terms assigned in the career_location taxonomy. - name: career_location_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the career_location taxonomy. - name: career_employment_type in: query schema: type: object description: Limit result set to items with specific terms assigned in the career_employment_type taxonomy. - name: career_employment_type_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the career_employment_type taxonomy. - name: career_workspace_type in: query schema: type: object description: Limit result set to items with specific terms assigned in the career_workspace_type taxonomy. - name: career_workspace_type_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Career summary: POST /wp/v2/career description: WordPress REST API route `/wp/v2/career` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. career_department: type: array items: type: integer description: The terms assigned to the post in the career_department taxonomy. career_location: type: array items: type: integer description: The terms assigned to the post in the career_location taxonomy. career_employment_type: type: array items: type: integer description: The terms assigned to the post in the career_employment_type taxonomy. career_workspace_type: type: array items: type: integer description: The terms assigned to the post in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career/{id}: get: operationId: getWpV2CareerId summary: GET /wp/v2/career/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerId summary: POST /wp/v2/career/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id023 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. career_department: type: array items: type: integer description: The terms assigned to the post in the career_department taxonomy. career_location: type: array items: type: integer description: The terms assigned to the post in the career_location taxonomy. career_employment_type: type: array items: type: integer description: The terms assigned to the post in the career_employment_type taxonomy. career_workspace_type: type: array items: type: integer description: The terms assigned to the post in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CareerId summary: PUT /wp/v2/career/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id023 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. career_department: type: array items: type: integer description: The terms assigned to the post in the career_department taxonomy. career_location: type: array items: type: integer description: The terms assigned to the post in the career_location taxonomy. career_employment_type: type: array items: type: integer description: The terms assigned to the post in the career_employment_type taxonomy. career_workspace_type: type: array items: type: integer description: The terms assigned to the post in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CareerId summary: PATCH /wp/v2/career/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id023 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. career_department: type: array items: type: integer description: The terms assigned to the post in the career_department taxonomy. career_location: type: array items: type: integer description: The terms assigned to the post in the career_location taxonomy. career_employment_type: type: array items: type: integer description: The terms assigned to the post in the career_employment_type taxonomy. career_workspace_type: type: array items: type: integer description: The terms assigned to the post in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerId summary: DELETE /wp/v2/career/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career/{parent}/revisions: get: operationId: getWpV2CareerParentRevisions summary: GET /wp/v2/career/{parent}/revisions description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career/{parent}/revisions/{id}: get: operationId: getWpV2CareerParentRevisionsId summary: GET /wp/v2/career/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerParentRevisionsId summary: DELETE /wp/v2/career/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career/{id}/autosaves: get: operationId: getWpV2CareerIdAutosaves summary: GET /wp/v2/career/{id}/autosaves description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerIdAutosaves summary: POST /wp/v2/career/{id}/autosaves description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. career_department: type: array items: type: integer description: The terms assigned to the post in the career_department taxonomy. career_location: type: array items: type: integer description: The terms assigned to the post in the career_location taxonomy. career_employment_type: type: array items: type: integer description: The terms assigned to the post in the career_employment_type taxonomy. career_workspace_type: type: array items: type: integer description: The terms assigned to the post in the career_workspace_type taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career/{parent}/autosaves/{id}: get: operationId: getWpV2CareerParentAutosavesId summary: GET /wp/v2/career/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/career/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event: get: operationId: getWpV2Event summary: GET /wp/v2/event description: WordPress REST API route `/wp/v2/event` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: event_type in: query schema: type: object description: Limit result set to items with specific terms assigned in the event_type taxonomy. - name: event_type_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the event_type taxonomy. - name: event_region in: query schema: type: object description: Limit result set to items with specific terms assigned in the event_region taxonomy. - name: event_region_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Event summary: POST /wp/v2/event description: WordPress REST API route `/wp/v2/event` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. event_type: type: array items: type: integer description: The terms assigned to the post in the event_type taxonomy. event_region: type: array items: type: integer description: The terms assigned to the post in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event/{id}: get: operationId: getWpV2EventId summary: GET /wp/v2/event/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventId summary: POST /wp/v2/event/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id024 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. event_type: type: array items: type: integer description: The terms assigned to the post in the event_type taxonomy. event_region: type: array items: type: integer description: The terms assigned to the post in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2EventId summary: PUT /wp/v2/event/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id024 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. event_type: type: array items: type: integer description: The terms assigned to the post in the event_type taxonomy. event_region: type: array items: type: integer description: The terms assigned to the post in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2EventId summary: PATCH /wp/v2/event/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id024 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. event_type: type: array items: type: integer description: The terms assigned to the post in the event_type taxonomy. event_region: type: array items: type: integer description: The terms assigned to the post in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2EventId summary: DELETE /wp/v2/event/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event/{parent}/revisions: get: operationId: getWpV2EventParentRevisions summary: GET /wp/v2/event/{parent}/revisions description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event/{parent}/revisions/{id}: get: operationId: getWpV2EventParentRevisionsId summary: GET /wp/v2/event/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2EventParentRevisionsId summary: DELETE /wp/v2/event/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event/{id}/autosaves: get: operationId: getWpV2EventIdAutosaves summary: GET /wp/v2/event/{id}/autosaves description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventIdAutosaves summary: POST /wp/v2/event/{id}/autosaves description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. template: type: string description: The theme file to use to display the post. event_type: type: array items: type: integer description: The terms assigned to the post in the event_type taxonomy. event_region: type: array items: type: integer description: The terms assigned to the post in the event_region taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event/{parent}/autosaves/{id}: get: operationId: getWpV2EventParentAutosavesId summary: GET /wp/v2/event/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/event/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product: get: operationId: getWpV2Product summary: GET /wp/v2/product description: WordPress REST API route `/wp/v2/product` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to posts published after a given ISO8601 compliant date. - name: modified_after in: query schema: type: string format: date-time description: Limit response to posts modified after a given ISO8601 compliant date. - name: before in: query schema: type: string format: date-time description: Limit response to posts published before a given ISO8601 compliant date. - name: modified_before in: query schema: type: string format: date-time description: Limit response to posts modified before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: search_semantics in: query schema: type: string enum: - exact description: How to interpret the search input. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title default: date description: Sort collection by post attribute. - name: search_columns in: query schema: type: array default: [] items: type: string enum: - post_title - post_content - post_excerpt description: Array of column names to be searched. - name: slug in: query schema: type: array items: type: string description: Limit result set to posts with one or more specific slugs. - name: status in: query schema: type: array default: publish items: type: string enum: - publish - future - draft - pending - private - trash - auto-draft - inherit - request-pending - request-confirmed - request-failed - request-completed - acf-disabled - dp-rewrite-republish - any description: Limit result set to posts assigned one or more statuses. - name: tax_relation in: query schema: type: string enum: - AND - OR description: Limit result set based on relationship between multiple taxonomies. - name: product_line in: query schema: type: object description: Limit result set to items with specific terms assigned in the product_line taxonomy. - name: product_line_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the product_line taxonomy. - name: output_power in: query schema: type: object description: Limit result set to items with specific terms assigned in the output_power taxonomy. - name: output_power_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the output_power taxonomy. - name: form_factor in: query schema: type: object description: Limit result set to items with specific terms assigned in the form_factor taxonomy. - name: form_factor_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the form_factor taxonomy. - name: tuning_range in: query schema: type: object description: Limit result set to items with specific terms assigned in the tuning_range taxonomy. - name: tuning_range_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the tuning_range taxonomy. - name: target_application in: query schema: type: object description: Limit result set to items with specific terms assigned in the target_application taxonomy. - name: target_application_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the target_application taxonomy. - name: temperature in: query schema: type: object description: Limit result set to items with specific terms assigned in the temperature taxonomy. - name: temperature_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the temperature taxonomy. - name: management_interface in: query schema: type: object description: Limit result set to items with specific terms assigned in the management_interface taxonomy. - name: management_interface_exclude in: query schema: type: object description: Limit result set to items except those with specific terms assigned in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Product summary: POST /wp/v2/product description: WordPress REST API route `/wp/v2/product` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. product_line: type: array items: type: integer description: The terms assigned to the post in the product_line taxonomy. output_power: type: array items: type: integer description: The terms assigned to the post in the output_power taxonomy. form_factor: type: array items: type: integer description: The terms assigned to the post in the form_factor taxonomy. tuning_range: type: array items: type: integer description: The terms assigned to the post in the tuning_range taxonomy. target_application: type: array items: type: integer description: The terms assigned to the post in the target_application taxonomy. temperature: type: array items: type: integer description: The terms assigned to the post in the temperature taxonomy. management_interface: type: array items: type: integer description: The terms assigned to the post in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product/{id}: get: operationId: getWpV2ProductId summary: GET /wp/v2/product/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ProductId summary: POST /wp/v2/product/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: &id025 - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. product_line: type: array items: type: integer description: The terms assigned to the post in the product_line taxonomy. output_power: type: array items: type: integer description: The terms assigned to the post in the output_power taxonomy. form_factor: type: array items: type: integer description: The terms assigned to the post in the form_factor taxonomy. tuning_range: type: array items: type: integer description: The terms assigned to the post in the tuning_range taxonomy. target_application: type: array items: type: integer description: The terms assigned to the post in the target_application taxonomy. temperature: type: array items: type: integer description: The terms assigned to the post in the temperature taxonomy. management_interface: type: array items: type: integer description: The terms assigned to the post in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2ProductId summary: PUT /wp/v2/product/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id025 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. product_line: type: array items: type: integer description: The terms assigned to the post in the product_line taxonomy. output_power: type: array items: type: integer description: The terms assigned to the post in the output_power taxonomy. form_factor: type: array items: type: integer description: The terms assigned to the post in the form_factor taxonomy. tuning_range: type: array items: type: integer description: The terms assigned to the post in the tuning_range taxonomy. target_application: type: array items: type: integer description: The terms assigned to the post in the target_application taxonomy. temperature: type: array items: type: integer description: The terms assigned to the post in the temperature taxonomy. management_interface: type: array items: type: integer description: The terms assigned to the post in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2ProductId summary: PATCH /wp/v2/product/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: *id025 description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. product_line: type: array items: type: integer description: The terms assigned to the post in the product_line taxonomy. output_power: type: array items: type: integer description: The terms assigned to the post in the output_power taxonomy. form_factor: type: array items: type: integer description: The terms assigned to the post in the form_factor taxonomy. tuning_range: type: array items: type: integer description: The terms assigned to the post in the tuning_range taxonomy. target_application: type: array items: type: integer description: The terms assigned to the post in the target_application taxonomy. temperature: type: array items: type: integer description: The terms assigned to the post in the temperature taxonomy. management_interface: type: array items: type: integer description: The terms assigned to the post in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2ProductId summary: DELETE /wp/v2/product/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product/{parent}/revisions: get: operationId: getWpV2ProductParentRevisions summary: GET /wp/v2/product/{parent}/revisions description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/revisions` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - id - include - relevance - slug - include_slugs - title default: date description: Sort collection by object attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product/{parent}/revisions/{id}: get: operationId: getWpV2ProductParentRevisionsId summary: GET /wp/v2/product/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2ProductParentRevisionsId summary: DELETE /wp/v2/product/{parent}/revisions/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/revisions/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as revisions do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product/{id}/autosaves: get: operationId: getWpV2ProductIdAutosaves summary: GET /wp/v2/product/{id}/autosaves description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: parent in: query schema: type: integer description: The ID for the parent of the autosave. - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ProductIdAutosaves summary: POST /wp/v2/product/{id}/autosaves description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/autosaves` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: parent: type: integer description: The ID for the parent of the autosave. date: type: string format: date-time description: The date the post was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the post was published, as GMT. slug: type: string description: An alphanumeric identifier for the post unique to its type. status: type: string enum: - publish - future - draft - pending - private - acf-disabled description: A named status for the post. password: type: string description: A password to protect access to the content and excerpt. title: type: object description: The title for the post. content: type: object description: The content for the post. featured_media: type: integer description: The ID of the featured media for the post. meta: type: object description: Meta fields. template: type: string description: The theme file to use to display the post. product_line: type: array items: type: integer description: The terms assigned to the post in the product_line taxonomy. output_power: type: array items: type: integer description: The terms assigned to the post in the output_power taxonomy. form_factor: type: array items: type: integer description: The terms assigned to the post in the form_factor taxonomy. tuning_range: type: array items: type: integer description: The terms assigned to the post in the tuning_range taxonomy. target_application: type: array items: type: integer description: The terms assigned to the post in the target_application taxonomy. temperature: type: array items: type: integer description: The terms assigned to the post in the temperature taxonomy. management_interface: type: array items: type: integer description: The terms assigned to the post in the management_interface taxonomy. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product/{parent}/autosaves/{id}: get: operationId: getWpV2ProductParentAutosavesId summary: GET /wp/v2/product/{parent}/autosaves/{id} description: WordPress REST API route `/wp/v2/product/(?P[\d]+)/autosaves/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: parent in: path required: true schema: type: string - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/types: get: operationId: getWpV2Types summary: GET /wp/v2/types description: WordPress REST API route `/wp/v2/types` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/types/{type}: get: operationId: getWpV2TypesType summary: GET /wp/v2/types/{type} description: WordPress REST API route `/wp/v2/types/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: type in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/statuses: get: operationId: getWpV2Statuses summary: GET /wp/v2/statuses description: WordPress REST API route `/wp/v2/statuses` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/statuses/{status}: get: operationId: getWpV2StatusesStatus summary: GET /wp/v2/statuses/{status} description: WordPress REST API route `/wp/v2/statuses/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: status in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/taxonomies: get: operationId: getWpV2Taxonomies summary: GET /wp/v2/taxonomies description: WordPress REST API route `/wp/v2/taxonomies` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: type in: query schema: type: string description: Limit results to taxonomies associated with a specific post type. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/taxonomies/{taxonomy}: get: operationId: getWpV2TaxonomiesTaxonomy summary: GET /wp/v2/taxonomies/{taxonomy} description: WordPress REST API route `/wp/v2/taxonomies/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: taxonomy in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/categories: get: operationId: getWpV2Categories summary: GET /wp/v2/categories description: WordPress REST API route `/wp/v2/categories` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Categories summary: POST /wp/v2/categories description: WordPress REST API route `/wp/v2/categories` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/categories/{id}: get: operationId: getWpV2CategoriesId summary: GET /wp/v2/categories/{id} description: WordPress REST API route `/wp/v2/categories/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CategoriesId summary: POST /wp/v2/categories/{id} description: WordPress REST API route `/wp/v2/categories/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CategoriesId summary: PUT /wp/v2/categories/{id} description: WordPress REST API route `/wp/v2/categories/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CategoriesId summary: PATCH /wp/v2/categories/{id} description: WordPress REST API route `/wp/v2/categories/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CategoriesId summary: DELETE /wp/v2/categories/{id} description: WordPress REST API route `/wp/v2/categories/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/tags: get: operationId: getWpV2Tags summary: GET /wp/v2/tags description: WordPress REST API route `/wp/v2/tags` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Tags summary: POST /wp/v2/tags description: WordPress REST API route `/wp/v2/tags` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/tags/{id}: get: operationId: getWpV2TagsId summary: GET /wp/v2/tags/{id} description: WordPress REST API route `/wp/v2/tags/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TagsId summary: POST /wp/v2/tags/{id} description: WordPress REST API route `/wp/v2/tags/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TagsId summary: PUT /wp/v2/tags/{id} description: WordPress REST API route `/wp/v2/tags/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TagsId summary: PATCH /wp/v2/tags/{id} description: WordPress REST API route `/wp/v2/tags/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TagsId summary: DELETE /wp/v2/tags/{id} description: WordPress REST API route `/wp/v2/tags/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menus: get: operationId: getWpV2Menus summary: GET /wp/v2/menus description: WordPress REST API route `/wp/v2/menus` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Menus summary: POST /wp/v2/menus description: WordPress REST API route `/wp/v2/menus` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. locations: type: array items: type: string description: The locations assigned to the menu. auto_add: type: boolean description: Whether to automatically add top level pages to this menu. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menus/{id}: get: operationId: getWpV2MenusId summary: GET /wp/v2/menus/{id} description: WordPress REST API route `/wp/v2/menus/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2MenusId summary: POST /wp/v2/menus/{id} description: WordPress REST API route `/wp/v2/menus/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. locations: type: array items: type: string description: The locations assigned to the menu. auto_add: type: boolean description: Whether to automatically add top level pages to this menu. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2MenusId summary: PUT /wp/v2/menus/{id} description: WordPress REST API route `/wp/v2/menus/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. locations: type: array items: type: string description: The locations assigned to the menu. auto_add: type: boolean description: Whether to automatically add top level pages to this menu. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2MenusId summary: PATCH /wp/v2/menus/{id} description: WordPress REST API route `/wp/v2/menus/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. locations: type: array items: type: string description: The locations assigned to the menu. auto_add: type: boolean description: Whether to automatically add top level pages to this menu. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2MenusId summary: DELETE /wp/v2/menus/{id} description: WordPress REST API route `/wp/v2/menus/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/wp_pattern_category: get: operationId: getWpV2WpPatternCategory summary: GET /wp/v2/wp_pattern_category description: WordPress REST API route `/wp/v2/wp_pattern_category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2WpPatternCategory summary: POST /wp/v2/wp_pattern_category description: WordPress REST API route `/wp/v2/wp_pattern_category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/wp_pattern_category/{id}: get: operationId: getWpV2WpPatternCategoryId summary: GET /wp/v2/wp_pattern_category/{id} description: WordPress REST API route `/wp/v2/wp_pattern_category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2WpPatternCategoryId summary: POST /wp/v2/wp_pattern_category/{id} description: WordPress REST API route `/wp/v2/wp_pattern_category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2WpPatternCategoryId summary: PUT /wp/v2/wp_pattern_category/{id} description: WordPress REST API route `/wp/v2/wp_pattern_category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2WpPatternCategoryId summary: PATCH /wp/v2/wp_pattern_category/{id} description: WordPress REST API route `/wp/v2/wp_pattern_category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2WpPatternCategoryId summary: DELETE /wp/v2/wp_pattern_category/{id} description: WordPress REST API route `/wp/v2/wp_pattern_category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product_line: get: operationId: getWpV2ProductLine summary: GET /wp/v2/product_line description: WordPress REST API route `/wp/v2/product_line` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ProductLine summary: POST /wp/v2/product_line description: WordPress REST API route `/wp/v2/product_line` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/product_line/{id}: get: operationId: getWpV2ProductLineId summary: GET /wp/v2/product_line/{id} description: WordPress REST API route `/wp/v2/product_line/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ProductLineId summary: POST /wp/v2/product_line/{id} description: WordPress REST API route `/wp/v2/product_line/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2ProductLineId summary: PUT /wp/v2/product_line/{id} description: WordPress REST API route `/wp/v2/product_line/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2ProductLineId summary: PATCH /wp/v2/product_line/{id} description: WordPress REST API route `/wp/v2/product_line/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2ProductLineId summary: DELETE /wp/v2/product_line/{id} description: WordPress REST API route `/wp/v2/product_line/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/output_power: get: operationId: getWpV2OutputPower summary: GET /wp/v2/output_power description: WordPress REST API route `/wp/v2/output_power` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2OutputPower summary: POST /wp/v2/output_power description: WordPress REST API route `/wp/v2/output_power` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/output_power/{id}: get: operationId: getWpV2OutputPowerId summary: GET /wp/v2/output_power/{id} description: WordPress REST API route `/wp/v2/output_power/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2OutputPowerId summary: POST /wp/v2/output_power/{id} description: WordPress REST API route `/wp/v2/output_power/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2OutputPowerId summary: PUT /wp/v2/output_power/{id} description: WordPress REST API route `/wp/v2/output_power/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2OutputPowerId summary: PATCH /wp/v2/output_power/{id} description: WordPress REST API route `/wp/v2/output_power/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2OutputPowerId summary: DELETE /wp/v2/output_power/{id} description: WordPress REST API route `/wp/v2/output_power/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/form_factor: get: operationId: getWpV2FormFactor summary: GET /wp/v2/form_factor description: WordPress REST API route `/wp/v2/form_factor` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FormFactor summary: POST /wp/v2/form_factor description: WordPress REST API route `/wp/v2/form_factor` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/form_factor/{id}: get: operationId: getWpV2FormFactorId summary: GET /wp/v2/form_factor/{id} description: WordPress REST API route `/wp/v2/form_factor/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FormFactorId summary: POST /wp/v2/form_factor/{id} description: WordPress REST API route `/wp/v2/form_factor/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2FormFactorId summary: PUT /wp/v2/form_factor/{id} description: WordPress REST API route `/wp/v2/form_factor/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2FormFactorId summary: PATCH /wp/v2/form_factor/{id} description: WordPress REST API route `/wp/v2/form_factor/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FormFactorId summary: DELETE /wp/v2/form_factor/{id} description: WordPress REST API route `/wp/v2/form_factor/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/tuning_range: get: operationId: getWpV2TuningRange summary: GET /wp/v2/tuning_range description: WordPress REST API route `/wp/v2/tuning_range` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TuningRange summary: POST /wp/v2/tuning_range description: WordPress REST API route `/wp/v2/tuning_range` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/tuning_range/{id}: get: operationId: getWpV2TuningRangeId summary: GET /wp/v2/tuning_range/{id} description: WordPress REST API route `/wp/v2/tuning_range/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TuningRangeId summary: POST /wp/v2/tuning_range/{id} description: WordPress REST API route `/wp/v2/tuning_range/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TuningRangeId summary: PUT /wp/v2/tuning_range/{id} description: WordPress REST API route `/wp/v2/tuning_range/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TuningRangeId summary: PATCH /wp/v2/tuning_range/{id} description: WordPress REST API route `/wp/v2/tuning_range/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TuningRangeId summary: DELETE /wp/v2/tuning_range/{id} description: WordPress REST API route `/wp/v2/tuning_range/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/target_application: get: operationId: getWpV2TargetApplication summary: GET /wp/v2/target_application description: WordPress REST API route `/wp/v2/target_application` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TargetApplication summary: POST /wp/v2/target_application description: WordPress REST API route `/wp/v2/target_application` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/target_application/{id}: get: operationId: getWpV2TargetApplicationId summary: GET /wp/v2/target_application/{id} description: WordPress REST API route `/wp/v2/target_application/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TargetApplicationId summary: POST /wp/v2/target_application/{id} description: WordPress REST API route `/wp/v2/target_application/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TargetApplicationId summary: PUT /wp/v2/target_application/{id} description: WordPress REST API route `/wp/v2/target_application/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TargetApplicationId summary: PATCH /wp/v2/target_application/{id} description: WordPress REST API route `/wp/v2/target_application/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TargetApplicationId summary: DELETE /wp/v2/target_application/{id} description: WordPress REST API route `/wp/v2/target_application/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/temperature: get: operationId: getWpV2Temperature summary: GET /wp/v2/temperature description: WordPress REST API route `/wp/v2/temperature` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Temperature summary: POST /wp/v2/temperature description: WordPress REST API route `/wp/v2/temperature` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/temperature/{id}: get: operationId: getWpV2TemperatureId summary: GET /wp/v2/temperature/{id} description: WordPress REST API route `/wp/v2/temperature/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2TemperatureId summary: POST /wp/v2/temperature/{id} description: WordPress REST API route `/wp/v2/temperature/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2TemperatureId summary: PUT /wp/v2/temperature/{id} description: WordPress REST API route `/wp/v2/temperature/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2TemperatureId summary: PATCH /wp/v2/temperature/{id} description: WordPress REST API route `/wp/v2/temperature/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2TemperatureId summary: DELETE /wp/v2/temperature/{id} description: WordPress REST API route `/wp/v2/temperature/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/management_interface: get: operationId: getWpV2ManagementInterface summary: GET /wp/v2/management_interface description: WordPress REST API route `/wp/v2/management_interface` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ManagementInterface summary: POST /wp/v2/management_interface description: WordPress REST API route `/wp/v2/management_interface` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/management_interface/{id}: get: operationId: getWpV2ManagementInterfaceId summary: GET /wp/v2/management_interface/{id} description: WordPress REST API route `/wp/v2/management_interface/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2ManagementInterfaceId summary: POST /wp/v2/management_interface/{id} description: WordPress REST API route `/wp/v2/management_interface/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2ManagementInterfaceId summary: PUT /wp/v2/management_interface/{id} description: WordPress REST API route `/wp/v2/management_interface/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2ManagementInterfaceId summary: PATCH /wp/v2/management_interface/{id} description: WordPress REST API route `/wp/v2/management_interface/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2ManagementInterfaceId summary: DELETE /wp/v2/management_interface/{id} description: WordPress REST API route `/wp/v2/management_interface/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq-category: get: operationId: getWpV2FaqCategory summary: GET /wp/v2/faq-category description: WordPress REST API route `/wp/v2/faq-category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FaqCategory summary: POST /wp/v2/faq-category description: WordPress REST API route `/wp/v2/faq-category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/faq-category/{id}: get: operationId: getWpV2FaqCategoryId summary: GET /wp/v2/faq-category/{id} description: WordPress REST API route `/wp/v2/faq-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FaqCategoryId summary: POST /wp/v2/faq-category/{id} description: WordPress REST API route `/wp/v2/faq-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2FaqCategoryId summary: PUT /wp/v2/faq-category/{id} description: WordPress REST API route `/wp/v2/faq-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2FaqCategoryId summary: PATCH /wp/v2/faq-category/{id} description: WordPress REST API route `/wp/v2/faq-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FaqCategoryId summary: DELETE /wp/v2/faq-category/{id} description: WordPress REST API route `/wp/v2/faq-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/function: get: operationId: getWpV2Function summary: GET /wp/v2/function description: WordPress REST API route `/wp/v2/function` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Function summary: POST /wp/v2/function description: WordPress REST API route `/wp/v2/function` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/function/{id}: get: operationId: getWpV2FunctionId summary: GET /wp/v2/function/{id} description: WordPress REST API route `/wp/v2/function/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2FunctionId summary: POST /wp/v2/function/{id} description: WordPress REST API route `/wp/v2/function/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2FunctionId summary: PUT /wp/v2/function/{id} description: WordPress REST API route `/wp/v2/function/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2FunctionId summary: PATCH /wp/v2/function/{id} description: WordPress REST API route `/wp/v2/function/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2FunctionId summary: DELETE /wp/v2/function/{id} description: WordPress REST API route `/wp/v2/function/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/location: get: operationId: getWpV2Location summary: GET /wp/v2/location description: WordPress REST API route `/wp/v2/location` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Location summary: POST /wp/v2/location description: WordPress REST API route `/wp/v2/location` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/location/{id}: get: operationId: getWpV2LocationId summary: GET /wp/v2/location/{id} description: WordPress REST API route `/wp/v2/location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2LocationId summary: POST /wp/v2/location/{id} description: WordPress REST API route `/wp/v2/location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2LocationId summary: PUT /wp/v2/location/{id} description: WordPress REST API route `/wp/v2/location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2LocationId summary: PATCH /wp/v2/location/{id} description: WordPress REST API route `/wp/v2/location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2LocationId summary: DELETE /wp/v2/location/{id} description: WordPress REST API route `/wp/v2/location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner-category: get: operationId: getWpV2PartnerCategory summary: GET /wp/v2/partner-category description: WordPress REST API route `/wp/v2/partner-category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: parent in: query schema: type: integer description: Limit result set to terms assigned to a specific parent. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PartnerCategory summary: POST /wp/v2/partner-category description: WordPress REST API route `/wp/v2/partner-category` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/partner-category/{id}: get: operationId: getWpV2PartnerCategoryId summary: GET /wp/v2/partner-category/{id} description: WordPress REST API route `/wp/v2/partner-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PartnerCategoryId summary: POST /wp/v2/partner-category/{id} description: WordPress REST API route `/wp/v2/partner-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2PartnerCategoryId summary: PUT /wp/v2/partner-category/{id} description: WordPress REST API route `/wp/v2/partner-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2PartnerCategoryId summary: PATCH /wp/v2/partner-category/{id} description: WordPress REST API route `/wp/v2/partner-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. parent: type: integer description: The parent term ID. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PartnerCategoryId summary: DELETE /wp/v2/partner-category/{id} description: WordPress REST API route `/wp/v2/partner-category/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_department: get: operationId: getWpV2CareerDepartment summary: GET /wp/v2/career_department description: WordPress REST API route `/wp/v2/career_department` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerDepartment summary: POST /wp/v2/career_department description: WordPress REST API route `/wp/v2/career_department` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_department/{id}: get: operationId: getWpV2CareerDepartmentId summary: GET /wp/v2/career_department/{id} description: WordPress REST API route `/wp/v2/career_department/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerDepartmentId summary: POST /wp/v2/career_department/{id} description: WordPress REST API route `/wp/v2/career_department/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CareerDepartmentId summary: PUT /wp/v2/career_department/{id} description: WordPress REST API route `/wp/v2/career_department/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CareerDepartmentId summary: PATCH /wp/v2/career_department/{id} description: WordPress REST API route `/wp/v2/career_department/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerDepartmentId summary: DELETE /wp/v2/career_department/{id} description: WordPress REST API route `/wp/v2/career_department/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_location: get: operationId: getWpV2CareerLocation summary: GET /wp/v2/career_location description: WordPress REST API route `/wp/v2/career_location` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerLocation summary: POST /wp/v2/career_location description: WordPress REST API route `/wp/v2/career_location` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_location/{id}: get: operationId: getWpV2CareerLocationId summary: GET /wp/v2/career_location/{id} description: WordPress REST API route `/wp/v2/career_location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerLocationId summary: POST /wp/v2/career_location/{id} description: WordPress REST API route `/wp/v2/career_location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CareerLocationId summary: PUT /wp/v2/career_location/{id} description: WordPress REST API route `/wp/v2/career_location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CareerLocationId summary: PATCH /wp/v2/career_location/{id} description: WordPress REST API route `/wp/v2/career_location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerLocationId summary: DELETE /wp/v2/career_location/{id} description: WordPress REST API route `/wp/v2/career_location/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_employment_type: get: operationId: getWpV2CareerEmploymentType summary: GET /wp/v2/career_employment_type description: WordPress REST API route `/wp/v2/career_employment_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerEmploymentType summary: POST /wp/v2/career_employment_type description: WordPress REST API route `/wp/v2/career_employment_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_employment_type/{id}: get: operationId: getWpV2CareerEmploymentTypeId summary: GET /wp/v2/career_employment_type/{id} description: WordPress REST API route `/wp/v2/career_employment_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerEmploymentTypeId summary: POST /wp/v2/career_employment_type/{id} description: WordPress REST API route `/wp/v2/career_employment_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CareerEmploymentTypeId summary: PUT /wp/v2/career_employment_type/{id} description: WordPress REST API route `/wp/v2/career_employment_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CareerEmploymentTypeId summary: PATCH /wp/v2/career_employment_type/{id} description: WordPress REST API route `/wp/v2/career_employment_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerEmploymentTypeId summary: DELETE /wp/v2/career_employment_type/{id} description: WordPress REST API route `/wp/v2/career_employment_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_workspace_type: get: operationId: getWpV2CareerWorkspaceType summary: GET /wp/v2/career_workspace_type description: WordPress REST API route `/wp/v2/career_workspace_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerWorkspaceType summary: POST /wp/v2/career_workspace_type description: WordPress REST API route `/wp/v2/career_workspace_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/career_workspace_type/{id}: get: operationId: getWpV2CareerWorkspaceTypeId summary: GET /wp/v2/career_workspace_type/{id} description: WordPress REST API route `/wp/v2/career_workspace_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CareerWorkspaceTypeId summary: POST /wp/v2/career_workspace_type/{id} description: WordPress REST API route `/wp/v2/career_workspace_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CareerWorkspaceTypeId summary: PUT /wp/v2/career_workspace_type/{id} description: WordPress REST API route `/wp/v2/career_workspace_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CareerWorkspaceTypeId summary: PATCH /wp/v2/career_workspace_type/{id} description: WordPress REST API route `/wp/v2/career_workspace_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CareerWorkspaceTypeId summary: DELETE /wp/v2/career_workspace_type/{id} description: WordPress REST API route `/wp/v2/career_workspace_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event_type: get: operationId: getWpV2EventType summary: GET /wp/v2/event_type description: WordPress REST API route `/wp/v2/event_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventType summary: POST /wp/v2/event_type description: WordPress REST API route `/wp/v2/event_type` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event_type/{id}: get: operationId: getWpV2EventTypeId summary: GET /wp/v2/event_type/{id} description: WordPress REST API route `/wp/v2/event_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventTypeId summary: POST /wp/v2/event_type/{id} description: WordPress REST API route `/wp/v2/event_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2EventTypeId summary: PUT /wp/v2/event_type/{id} description: WordPress REST API route `/wp/v2/event_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2EventTypeId summary: PATCH /wp/v2/event_type/{id} description: WordPress REST API route `/wp/v2/event_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2EventTypeId summary: DELETE /wp/v2/event_type/{id} description: WordPress REST API route `/wp/v2/event_type/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event_region: get: operationId: getWpV2EventRegion summary: GET /wp/v2/event_region description: WordPress REST API route `/wp/v2/event_region` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: asc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - id - include - name - slug - include_slugs - term_group - description - count default: name description: Sort collection by term attribute. - name: hide_empty in: query schema: type: boolean default: false description: Whether to hide terms not assigned to any posts. - name: post in: query schema: type: integer default: null description: Limit result set to terms assigned to a specific post. - name: slug in: query schema: type: array items: type: string description: Limit result set to terms with one or more specific slugs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventRegion summary: POST /wp/v2/event_region description: WordPress REST API route `/wp/v2/event_region` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/event_region/{id}: get: operationId: getWpV2EventRegionId summary: GET /wp/v2/event_region/{id} description: WordPress REST API route `/wp/v2/event_region/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2EventRegionId summary: POST /wp/v2/event_region/{id} description: WordPress REST API route `/wp/v2/event_region/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2EventRegionId summary: PUT /wp/v2/event_region/{id} description: WordPress REST API route `/wp/v2/event_region/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2EventRegionId summary: PATCH /wp/v2/event_region/{id} description: WordPress REST API route `/wp/v2/event_region/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: description: type: string description: HTML description of the term. name: type: string description: HTML title for the term. slug: type: string description: An alphanumeric identifier for the term unique to its type. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2EventRegionId summary: DELETE /wp/v2/event_region/{id} description: WordPress REST API route `/wp/v2/event_region/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Required to be true, as terms do not support trashing. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/users/me: get: operationId: getWpV2UsersMe summary: GET /wp/v2/users/me description: WordPress REST API route `/wp/v2/users/me` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2UsersMe summary: POST /wp/v2/users/me description: WordPress REST API route `/wp/v2/users/me` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: username: type: string description: Login name for the user. name: type: string description: Display name for the user. first_name: type: string description: First name for the user. last_name: type: string description: Last name for the user. email: type: string format: email description: The email address for the user. url: type: string format: uri description: URL of the user. description: type: string description: Description of the user. locale: type: string enum: &id026 - '' - en_US description: Locale for the user. nickname: type: string description: The nickname for the user. slug: type: string description: An alphanumeric identifier for the user. roles: type: array items: type: string description: Roles assigned to the user. password: type: string description: Password for the user (never included). meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2UsersMe summary: PUT /wp/v2/users/me description: WordPress REST API route `/wp/v2/users/me` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: username: type: string description: Login name for the user. name: type: string description: Display name for the user. first_name: type: string description: First name for the user. last_name: type: string description: Last name for the user. email: type: string format: email description: The email address for the user. url: type: string format: uri description: URL of the user. description: type: string description: Description of the user. locale: type: string enum: *id026 description: Locale for the user. nickname: type: string description: The nickname for the user. slug: type: string description: An alphanumeric identifier for the user. roles: type: array items: type: string description: Roles assigned to the user. password: type: string description: Password for the user (never included). meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2UsersMe summary: PATCH /wp/v2/users/me description: WordPress REST API route `/wp/v2/users/me` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: username: type: string description: Login name for the user. name: type: string description: Display name for the user. first_name: type: string description: First name for the user. last_name: type: string description: Last name for the user. email: type: string format: email description: The email address for the user. url: type: string format: uri description: URL of the user. description: type: string description: Description of the user. locale: type: string enum: *id026 description: Locale for the user. nickname: type: string description: The nickname for the user. slug: type: string description: An alphanumeric identifier for the user. roles: type: array items: type: string description: Roles assigned to the user. password: type: string description: Password for the user (never included). meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2UsersMe summary: DELETE /wp/v2/users/me description: WordPress REST API route `/wp/v2/users/me` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: force in: query schema: type: boolean default: false description: Required to be true, as users do not support trashing. - name: reassign in: query schema: type: integer required: true description: Reassign the deleted user's posts and links to this user ID. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/users/{user_id}/application-passwords: get: operationId: getWpV2UsersUserIdApplicationPasswords summary: GET /wp/v2/users/{user_id}/application-passwords description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2UsersUserIdApplicationPasswords summary: POST /wp/v2/users/{user_id}/application-passwords description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string requestBody: required: true content: application/json: schema: type: object properties: app_id: type: string description: A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace. name: type: string description: The name of the application password. required: - name responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2UsersUserIdApplicationPasswords summary: DELETE /wp/v2/users/{user_id}/application-passwords description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/users/{user_id}/application-passwords/introspect: get: operationId: getWpV2UsersUserIdApplicationPasswordsIntrospect summary: GET /wp/v2/users/{user_id}/application-passwords/introspect description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/introspect` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/users/{user_id}/application-passwords/{uuid}: get: operationId: getWpV2UsersUserIdApplicationPasswordsUuid summary: GET /wp/v2/users/{user_id}/application-passwords/{uuid} description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2UsersUserIdApplicationPasswordsUuid summary: POST /wp/v2/users/{user_id}/application-passwords/{uuid} description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string description: A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace. name: type: string description: The name of the application password. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2UsersUserIdApplicationPasswordsUuid summary: PUT /wp/v2/users/{user_id}/application-passwords/{uuid} description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string description: A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace. name: type: string description: The name of the application password. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2UsersUserIdApplicationPasswordsUuid summary: PATCH /wp/v2/users/{user_id}/application-passwords/{uuid} description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: app_id: type: string description: A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace. name: type: string description: The name of the application password. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2UsersUserIdApplicationPasswordsUuid summary: DELETE /wp/v2/users/{user_id}/application-passwords/{uuid} description: WordPress REST API route `/wp/v2/users/(?P(?:[\d]+|me))/application-passwords/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: user_id in: path required: true schema: type: string - name: uuid in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/comments: get: operationId: getWpV2Comments summary: GET /wp/v2/comments description: WordPress REST API route `/wp/v2/comments` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: after in: query schema: type: string format: date-time description: Limit response to comments published after a given ISO8601 compliant date. - name: author in: query schema: type: array items: type: integer description: Limit result set to comments assigned to specific user IDs. Requires authorization. - name: author_exclude in: query schema: type: array items: type: integer description: Ensure result set excludes comments assigned to specific user IDs. Requires authorization. - name: author_email in: query schema: type: string default: null format: email description: Limit result set to that from a specific author email. Requires authorization. - name: before in: query schema: type: string format: date-time description: Limit response to comments published before a given ISO8601 compliant date. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - date - date_gmt - id - include - post - parent - type default: date_gmt description: Sort collection by comment attribute. - name: parent in: query schema: type: array default: [] items: type: integer description: Limit result set to comments of specific parent IDs. - name: parent_exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific parent IDs. - name: post in: query schema: type: array default: [] items: type: integer description: Limit result set to comments assigned to specific post IDs. - name: status in: query schema: type: string default: approve description: Limit result set to comments assigned a specific status. Requires authorization. - name: type in: query schema: type: string default: comment description: Limit result set to comments assigned a specific type. Requires authorization. - name: password in: query schema: type: string description: The password for the post if it is password protected. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Comments summary: POST /wp/v2/comments description: WordPress REST API route `/wp/v2/comments` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: author: type: integer description: The ID of the user object, if author was a user. author_email: type: string format: email description: Email address for the comment author. author_ip: type: string format: ip description: IP address for the comment author. author_name: type: string description: Display name for the comment author. author_url: type: string format: uri description: URL for the comment author. author_user_agent: type: string description: User agent for the comment author. content: type: object description: The content for the comment. date: type: string format: date-time description: The date the comment was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the comment was published, as GMT. parent: type: integer default: 0 description: The ID for the parent of the comment. post: type: integer default: 0 description: The ID of the associated post object. status: type: string description: State of the comment. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/comments/{id}: get: operationId: getWpV2CommentsId summary: GET /wp/v2/comments/{id} description: WordPress REST API route `/wp/v2/comments/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: password in: query schema: type: string description: The password for the parent post of the comment (if the post is password protected). responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2CommentsId summary: POST /wp/v2/comments/{id} description: WordPress REST API route `/wp/v2/comments/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: author: type: integer description: The ID of the user object, if author was a user. author_email: type: string format: email description: Email address for the comment author. author_ip: type: string format: ip description: IP address for the comment author. author_name: type: string description: Display name for the comment author. author_url: type: string format: uri description: URL for the comment author. author_user_agent: type: string description: User agent for the comment author. content: type: object description: The content for the comment. date: type: string format: date-time description: The date the comment was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the comment was published, as GMT. parent: type: integer description: The ID for the parent of the comment. post: type: integer description: The ID of the associated post object. status: type: string description: State of the comment. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2CommentsId summary: PUT /wp/v2/comments/{id} description: WordPress REST API route `/wp/v2/comments/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: author: type: integer description: The ID of the user object, if author was a user. author_email: type: string format: email description: Email address for the comment author. author_ip: type: string format: ip description: IP address for the comment author. author_name: type: string description: Display name for the comment author. author_url: type: string format: uri description: URL for the comment author. author_user_agent: type: string description: User agent for the comment author. content: type: object description: The content for the comment. date: type: string format: date-time description: The date the comment was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the comment was published, as GMT. parent: type: integer description: The ID for the parent of the comment. post: type: integer description: The ID of the associated post object. status: type: string description: State of the comment. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2CommentsId summary: PATCH /wp/v2/comments/{id} description: WordPress REST API route `/wp/v2/comments/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: author: type: integer description: The ID of the user object, if author was a user. author_email: type: string format: email description: Email address for the comment author. author_ip: type: string format: ip description: IP address for the comment author. author_name: type: string description: Display name for the comment author. author_url: type: string format: uri description: URL for the comment author. author_user_agent: type: string description: User agent for the comment author. content: type: object description: The content for the comment. date: type: string format: date-time description: The date the comment was published, in the site's timezone. date_gmt: type: string format: date-time description: The date the comment was published, as GMT. parent: type: integer description: The ID for the parent of the comment. post: type: integer description: The ID of the associated post object. status: type: string description: State of the comment. meta: type: object description: Meta fields. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2CommentsId summary: DELETE /wp/v2/comments/{id} description: WordPress REST API route `/wp/v2/comments/(?P[\d]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean default: false description: Whether to bypass Trash and force deletion. - name: password in: query schema: type: string description: The password for the parent post of the comment (if the post is password protected). responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/search: get: operationId: getWpV2Search summary: GET /wp/v2/search description: WordPress REST API route `/wp/v2/search` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: type in: query schema: type: string enum: - post - term - post-format default: post description: Limit results to items of an object type. - name: subtype in: query schema: type: array default: any items: type: string enum: - post - page - faq - partner - team - career - event - product - category - post_tag - product_line - output_power - form_factor - tuning_range - target_application - temperature - management_interface - faq-category - function - location - partner-category - career_department - career_location - career_employment_type - career_workspace_type - event_type - event_region - any description: Limit results to items of one or more object subtypes. - name: exclude in: query schema: type: array default: [] items: type: integer description: Ensure result set excludes specific IDs. - name: include in: query schema: type: array default: [] items: type: integer description: Limit result set to specific IDs. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-renderer/{name}: get: operationId: getWpV2BlockRendererName summary: GET /wp/v2/block-renderer/{name} description: WordPress REST API route `/wp/v2/block-renderer/(?P[a-z0-9-]+/[a-z0-9-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: name in: path required: true schema: type: string - name: context in: query schema: type: string enum: &id027 - edit default: view description: Scope under which the request is made; determines fields present in response. - name: attributes in: query schema: type: object default: &id028 [] description: Attributes for the block. - name: post_id in: query schema: type: integer description: ID of the post context. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2BlockRendererName summary: POST /wp/v2/block-renderer/{name} description: WordPress REST API route `/wp/v2/block-renderer/(?P[a-z0-9-]+/[a-z0-9-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: name in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: context: type: string enum: *id027 default: view description: Scope under which the request is made; determines fields present in response. attributes: type: object default: *id028 description: Attributes for the block. post_id: type: integer description: ID of the post context. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-types: get: operationId: getWpV2BlockTypes summary: GET /wp/v2/block-types description: WordPress REST API route `/wp/v2/block-types` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: namespace in: query schema: type: string description: Block namespace. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-types/{namespace}: get: operationId: getWpV2BlockTypesNamespace summary: GET /wp/v2/block-types/{namespace} description: WordPress REST API route `/wp/v2/block-types/(?P[a-zA-Z0-9_-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: namespace in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-types/{namespace}/{name}: get: operationId: getWpV2BlockTypesNamespaceName summary: GET /wp/v2/block-types/{namespace}/{name} description: WordPress REST API route `/wp/v2/block-types/(?P[a-zA-Z0-9_-]+)/(?P[a-zA-Z0-9_-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: namespace in: path required: true schema: type: string - name: name in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/settings: get: operationId: getWpV2Settings summary: GET /wp/v2/settings description: WordPress REST API route `/wp/v2/settings` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Settings summary: POST /wp/v2/settings description: WordPress REST API route `/wp/v2/settings` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: wordpress_api_key: type: string description: API key for the Akismet Anti-spam connector. title: type: string description: Site title. description: type: string description: Site tagline. url: type: string format: uri description: Site URL. email: type: string format: email description: This address is used for admin purposes, like new user notification. timezone: type: string description: A city in the same timezone as you. date_format: type: string description: A date format for all date strings. time_format: type: string description: A time format for all time strings. start_of_week: type: integer description: A day number of the week that the week should start on. language: type: string description: WordPress locale code. use_smilies: type: boolean description: Convert emoticons like :-) and :-P to graphics on display. default_category: type: integer description: Default post category. default_post_format: type: string description: Default post format. posts_per_page: type: integer description: Blog pages show at most. show_on_front: type: string description: What to show on the front page page_on_front: type: integer description: The ID of the page that should be displayed on the front page page_for_posts: type: integer description: The ID of the page that should display the latest posts default_ping_status: type: string enum: &id029 - open - closed description: Allow link notifications from other blogs (pingbacks and trackbacks) on new articles. default_comment_status: type: string enum: &id030 - open - closed description: Allow people to submit comments on new posts. site_logo: type: integer description: Site logo. site_icon: type: integer description: Site icon. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2Settings summary: PUT /wp/v2/settings description: WordPress REST API route `/wp/v2/settings` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: wordpress_api_key: type: string description: API key for the Akismet Anti-spam connector. title: type: string description: Site title. description: type: string description: Site tagline. url: type: string format: uri description: Site URL. email: type: string format: email description: This address is used for admin purposes, like new user notification. timezone: type: string description: A city in the same timezone as you. date_format: type: string description: A date format for all date strings. time_format: type: string description: A time format for all time strings. start_of_week: type: integer description: A day number of the week that the week should start on. language: type: string description: WordPress locale code. use_smilies: type: boolean description: Convert emoticons like :-) and :-P to graphics on display. default_category: type: integer description: Default post category. default_post_format: type: string description: Default post format. posts_per_page: type: integer description: Blog pages show at most. show_on_front: type: string description: What to show on the front page page_on_front: type: integer description: The ID of the page that should be displayed on the front page page_for_posts: type: integer description: The ID of the page that should display the latest posts default_ping_status: type: string enum: *id029 description: Allow link notifications from other blogs (pingbacks and trackbacks) on new articles. default_comment_status: type: string enum: *id030 description: Allow people to submit comments on new posts. site_logo: type: integer description: Site logo. site_icon: type: integer description: Site icon. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2Settings summary: PATCH /wp/v2/settings description: WordPress REST API route `/wp/v2/settings` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: false content: application/json: schema: type: object properties: wordpress_api_key: type: string description: API key for the Akismet Anti-spam connector. title: type: string description: Site title. description: type: string description: Site tagline. url: type: string format: uri description: Site URL. email: type: string format: email description: This address is used for admin purposes, like new user notification. timezone: type: string description: A city in the same timezone as you. date_format: type: string description: A date format for all date strings. time_format: type: string description: A time format for all time strings. start_of_week: type: integer description: A day number of the week that the week should start on. language: type: string description: WordPress locale code. use_smilies: type: boolean description: Convert emoticons like :-) and :-P to graphics on display. default_category: type: integer description: Default post category. default_post_format: type: string description: Default post format. posts_per_page: type: integer description: Blog pages show at most. show_on_front: type: string description: What to show on the front page page_on_front: type: integer description: The ID of the page that should be displayed on the front page page_for_posts: type: integer description: The ID of the page that should display the latest posts default_ping_status: type: string enum: *id029 description: Allow link notifications from other blogs (pingbacks and trackbacks) on new articles. default_comment_status: type: string enum: *id030 description: Allow people to submit comments on new posts. site_logo: type: integer description: Site logo. site_icon: type: integer description: Site icon. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/themes: get: operationId: getWpV2Themes summary: GET /wp/v2/themes description: WordPress REST API route `/wp/v2/themes` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: status in: query schema: type: array items: type: string enum: - active - inactive description: Limit result set to themes assigned one or more statuses. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/themes/{stylesheet}: get: operationId: getWpV2ThemesStylesheet summary: GET /wp/v2/themes/{stylesheet} description: WordPress REST API route `/wp/v2/themes/(?P[^\/:<>\*\?"\|]+(?:\/[^\/:<>\*\?"\|]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: stylesheet in: path required: true schema: type: string responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/plugins: get: operationId: getWpV2Plugins summary: GET /wp/v2/plugins description: WordPress REST API route `/wp/v2/plugins` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: status in: query schema: type: array items: type: string enum: - inactive - active description: Limits results to plugins with the given status. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Plugins summary: POST /wp/v2/plugins description: WordPress REST API route `/wp/v2/plugins` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: slug: type: string description: WordPress.org plugin directory slug. status: type: string enum: - inactive - active default: inactive description: The plugin activation status. required: - slug responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/plugins/{plugin}: get: operationId: getWpV2PluginsPlugin summary: GET /wp/v2/plugins/{plugin} description: WordPress REST API route `/wp/v2/plugins/(?P[^.\/]+(?:\/[^.\/]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: plugin in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2PluginsPlugin summary: POST /wp/v2/plugins/{plugin} description: WordPress REST API route `/wp/v2/plugins/(?P[^.\/]+(?:\/[^.\/]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: plugin in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: context: type: string enum: &id031 - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. status: type: string enum: &id032 - inactive - active description: The plugin activation status. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2PluginsPlugin summary: PUT /wp/v2/plugins/{plugin} description: WordPress REST API route `/wp/v2/plugins/(?P[^.\/]+(?:\/[^.\/]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: plugin in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: context: type: string enum: *id031 default: view description: Scope under which the request is made; determines fields present in response. status: type: string enum: *id032 description: The plugin activation status. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2PluginsPlugin summary: PATCH /wp/v2/plugins/{plugin} description: WordPress REST API route `/wp/v2/plugins/(?P[^.\/]+(?:\/[^.\/]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: plugin in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: context: type: string enum: *id031 default: view description: Scope under which the request is made; determines fields present in response. status: type: string enum: *id032 description: The plugin activation status. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2PluginsPlugin summary: DELETE /wp/v2/plugins/{plugin} description: WordPress REST API route `/wp/v2/plugins/(?P[^.\/]+(?:\/[^.\/]+)?)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: plugin in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/sidebars: get: operationId: getWpV2Sidebars summary: GET /wp/v2/sidebars description: WordPress REST API route `/wp/v2/sidebars` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/sidebars/{id}: get: operationId: getWpV2SidebarsId summary: GET /wp/v2/sidebars/{id} description: WordPress REST API route `/wp/v2/sidebars/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2SidebarsId summary: POST /wp/v2/sidebars/{id} description: WordPress REST API route `/wp/v2/sidebars/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: widgets: type: array items: type: &id033 - object - string description: Nested widgets. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2SidebarsId summary: PUT /wp/v2/sidebars/{id} description: WordPress REST API route `/wp/v2/sidebars/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: widgets: type: array items: type: *id033 description: Nested widgets. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2SidebarsId summary: PATCH /wp/v2/sidebars/{id} description: WordPress REST API route `/wp/v2/sidebars/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: widgets: type: array items: type: *id033 description: Nested widgets. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widget-types: get: operationId: getWpV2WidgetTypes summary: GET /wp/v2/widget-types description: WordPress REST API route `/wp/v2/widget-types` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widget-types/{id}: get: operationId: getWpV2WidgetTypesId summary: GET /wp/v2/widget-types/{id} description: WordPress REST API route `/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widget-types/{id}/encode: post: operationId: postWpV2WidgetTypesIdEncode summary: POST /wp/v2/widget-types/{id}/encode description: WordPress REST API route `/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)/encode` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: instance: type: object description: Current instance settings of the widget. form_data: type: string description: Serialized widget form data to encode into instance settings. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widget-types/{id}/render: post: operationId: postWpV2WidgetTypesIdRender summary: POST /wp/v2/widget-types/{id}/render description: WordPress REST API route `/wp/v2/widget-types/(?P[a-zA-Z0-9_-]+)/render` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: instance: type: object description: Current instance settings of the widget. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widgets: get: operationId: getWpV2Widgets summary: GET /wp/v2/widgets description: WordPress REST API route `/wp/v2/widgets` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: sidebar in: query schema: type: string description: The sidebar to return widgets for. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2Widgets summary: POST /wp/v2/widgets description: WordPress REST API route `/wp/v2/widgets` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 requestBody: required: true content: application/json: schema: type: object properties: id: type: string description: Unique identifier for the widget. id_base: type: string description: The type of the widget. Corresponds to ID in widget-types endpoint. sidebar: type: string default: wp_inactive_widgets description: The sidebar the widget belongs to. instance: type: object description: Instance settings of the widget, if supported. form_data: type: string description: URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only. required: - sidebar responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/widgets/{id}: get: operationId: getWpV2WidgetsId summary: GET /wp/v2/widgets/{id} description: WordPress REST API route `/wp/v2/widgets/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' post: operationId: postWpV2WidgetsId summary: POST /wp/v2/widgets/{id} description: WordPress REST API route `/wp/v2/widgets/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: id_base: type: string description: The type of the widget. Corresponds to ID in widget-types endpoint. sidebar: type: string description: The sidebar the widget belongs to. instance: type: object description: Instance settings of the widget, if supported. form_data: type: string description: URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' put: operationId: putWpV2WidgetsId summary: PUT /wp/v2/widgets/{id} description: WordPress REST API route `/wp/v2/widgets/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: id_base: type: string description: The type of the widget. Corresponds to ID in widget-types endpoint. sidebar: type: string description: The sidebar the widget belongs to. instance: type: object description: Instance settings of the widget, if supported. form_data: type: string description: URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' patch: operationId: patchWpV2WidgetsId summary: PATCH /wp/v2/widgets/{id} description: WordPress REST API route `/wp/v2/widgets/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string requestBody: required: false content: application/json: schema: type: object properties: id_base: type: string description: The type of the widget. Corresponds to ID in widget-types endpoint. sidebar: type: string description: The sidebar the widget belongs to. instance: type: object description: Instance settings of the widget, if supported. form_data: type: string description: URL-encoded form data from the widget admin form. Used to update a widget that does not support instance. Write only. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' delete: operationId: deleteWpV2WidgetsId summary: DELETE /wp/v2/widgets/{id} description: WordPress REST API route `/wp/v2/widgets/(?P[\w\-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: id in: path required: true schema: type: string - name: force in: query schema: type: boolean description: Whether to force removal of the widget, or move it to the inactive sidebar. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-directory/search: get: operationId: getWpV2BlockDirectorySearch summary: GET /wp/v2/block-directory/search description: WordPress REST API route `/wp/v2/block-directory/search` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: term in: query schema: type: string required: true description: Limit result set to blocks matching the search term. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/pattern-directory/patterns: get: operationId: getWpV2PatternDirectoryPatterns summary: GET /wp/v2/pattern-directory/patterns description: WordPress REST API route `/wp/v2/pattern-directory/patterns` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 100 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. - name: category in: query schema: type: integer minimum: 1 description: Limit results to those matching a category ID. - name: keyword in: query schema: type: integer minimum: 1 description: Limit results to those matching a keyword ID. - name: slug in: query schema: type: array description: Limit results to those matching a pattern (slug). - name: offset in: query schema: type: integer description: Offset the result set by a specific number of items. - name: order in: query schema: type: string enum: - asc - desc default: desc description: Order sort attribute ascending or descending. - name: orderby in: query schema: type: string enum: - author - date - id - include - modified - parent - relevance - slug - include_slugs - title - favorite_count default: date description: Sort collection by post attribute. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-patterns/patterns: get: operationId: getWpV2BlockPatternsPatterns summary: GET /wp/v2/block-patterns/patterns description: WordPress REST API route `/wp/v2/block-patterns/patterns` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/block-patterns/categories: get: operationId: getWpV2BlockPatternsCategories summary: GET /wp/v2/block-patterns/categories description: WordPress REST API route `/wp/v2/block-patterns/categories` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-locations: get: operationId: getWpV2MenuLocations summary: GET /wp/v2/menu-locations description: WordPress REST API route `/wp/v2/menu-locations` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/menu-locations/{location}: get: operationId: getWpV2MenuLocationsLocation summary: GET /wp/v2/menu-locations/{location} description: WordPress REST API route `/wp/v2/menu-locations/(?P[\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: location in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-collections: get: operationId: getWpV2FontCollections summary: GET /wp/v2/font-collections description: WordPress REST API route `/wp/v2/font-collections` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/font-collections/{slug}: get: operationId: getWpV2FontCollectionsSlug summary: GET /wp/v2/font-collections/{slug} description: WordPress REST API route `/wp/v2/font-collections/(?P[\/\w-]+)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: slug in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/icons: get: operationId: getWpV2Icons summary: GET /wp/v2/icons description: WordPress REST API route `/wp/v2/icons` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. - name: page in: query schema: type: integer default: 1 minimum: 1 description: Current page of the collection. - name: per_page in: query schema: type: integer default: 10 minimum: 1 maximum: 100 description: Maximum number of items to be returned in result set. - name: search in: query schema: type: string description: Limit results to those matching a string. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' /wp-json/wp/v2/icons/{name}: get: operationId: getWpV2IconsName summary: GET /wp/v2/icons/{name} description: WordPress REST API route `/wp/v2/icons/(?P[a-z][a-z0-9-]*/[a-z][a-z0-9-]*)` in namespace `wp/v2`, as advertised by the live route-discovery document at https://effectphotonics.com/wp-json/. tags: - wp/v2 parameters: - name: name in: path required: true schema: type: string - name: context in: query schema: type: string enum: - view - embed - edit default: view description: Scope under which the request is made; determines fields present in response. responses: '200': description: Success content: application/json: schema: {} '401': description: Authentication required or capability missing content: application/json: schema: $ref: '#/components/schemas/WPError' '404': description: No route or resource found content: application/json: schema: $ref: '#/components/schemas/WPError' components: schemas: WPError: type: object description: The WordPress REST API error envelope, observed verbatim on live 401/404 responses from this host. Not RFC 9457 problem+json. properties: code: type: string examples: - rest_forbidden - mcp_unauthorized - effect_invalid_attachment message: type: string examples: - Sorry, you are not allowed to do that. - MCP authentication required. - Not an attachment. data: type: object properties: status: type: integer examples: - 401 - 404 securitySchemes: mcpOAuth2: type: oauth2 description: OAuth 2.1 authorization-code + PKCE (S256), as advertised by the provider's RFC 8414 metadata at https://effectphotonics.com/.well-known/oauth-authorization-server (fetched 2026-08-12, HTTP 200). Guards the `mcp` namespace; the protected-resource metadata (RFC 9728) names https://effectphotonics.com/wp-json/mcp/mcp-oauth-server. flows: authorizationCode: authorizationUrl: https://effectphotonics.com/oauth/authorize tokenUrl: https://effectphotonics.com/oauth/token refreshUrl: https://effectphotonics.com/oauth/token scopes: mcp: Access the site's Model Context Protocol server. wpNonce: type: apiKey in: header name: X-WP-Nonce description: WordPress cookie-authentication nonce. Advertised by the live server in its Access-Control-Allow-Headers response header (Authorization, X-WP-Nonce, Content-Disposition, Content-MD5, Content-Type). applicationPassword: type: http scheme: basic description: WordPress Application Passwords — HTTP Basic with a user-issued application password. The live discovery document at https://effectphotonics.com/wp-json/ names https://effectphotonics.com/wp-admin/authorize-application.php as the authorization endpoint.