Greif Technology API
The technology API from Greif — 6 operation(s) for technology.
The technology API from Greif — 6 operation(s) for technology.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/greif-technology-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Greif WordPress REST API (wp/v2) Technology API
version: wp/v2
description: The WordPress REST API namespace `wp/v2` as served by Greif at https://www.greif.com/wp-json/.
contact:
name: Greif
url: https://www.greif.com/contact/
termsOfService: https://www.greif.com/terms-and-conditions/
servers:
- url: https://www.greif.com/wp-json
description: Greif corporate site WordPress REST API
tags:
- name: technology
paths:
/wp/v2/technology:
get:
operationId: getWpV2Technology
summary: GET /wp/v2/technology
tags:
- technology
parameters:
- name: context
in: query
required: false
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
required: false
schema:
type: integer
default: 1
description: Current page of the collection.
- name: per_page
in: query
required: false
schema:
type: integer
default: 10
description: Maximum number of items to be returned in result set.
- name: search
in: query
required: false
schema:
type: string
description: Limit results to those matching a string.
- name: after
in: query
required: false
schema:
type: string
description: Limit response to posts published after a given ISO8601 compliant date.
- name: modified_after
in: query
required: false
schema:
type: string
description: Limit response to posts modified after a given ISO8601 compliant date.
- name: before
in: query
required: false
schema:
type: string
description: Limit response to posts published before a given ISO8601 compliant date.
- name: modified_before
in: query
required: false
schema:
type: string
description: Limit response to posts modified before a given ISO8601 compliant date.
- name: exclude
in: query
required: false
schema:
type: array
default: []
items:
type: integer
description: Ensure result set excludes specific IDs.
- name: include
in: query
required: false
schema:
type: array
default: []
items:
type: integer
description: Limit result set to specific IDs.
- name: search_semantics
in: query
required: false
schema:
type: string
enum:
- exact
description: How to interpret the search input.
- name: offset
in: query
required: false
schema:
type: integer
description: Offset the result set by a specific number of items.
- name: order
in: query
required: false
schema:
type: string
enum:
- asc
- desc
default: desc
description: Order sort attribute ascending or descending.
- name: orderby
in: query
required: false
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
required: false
schema:
type: array
default: []
items:
type: string
description: Array of column names to be searched.
- name: slug
in: query
required: false
schema:
type: array
items:
type: string
description: Limit result set to posts with one or more specific slugs.
- name: status
in: query
required: false
schema:
type: array
default: publish
items:
type: string
description: Limit result set to posts assigned one or more statuses.
- name: format
in: query
required: false
schema:
type: array
items:
type: string
description: Limit result set to items assigned one or more given formats.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
post:
operationId: createWpV2Technology
summary: POST /wp/v2/technology
tags:
- technology
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
date:
description: The date the post was published, in the site's timezone.
date_gmt:
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.
featured_media:
type: integer
description: The ID of the featured media for the post.
format:
type: string
enum:
- standard
- aside
- chat
- gallery
- link
- image
- quote
- status
- video
- audio
description: The format for the post.
template:
type: string
description: The theme file to use to display the post.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
/wp/v2/technology/{id}:
get:
operationId: getWpV2TechnologyById
summary: GET /wp/v2/technology/{id}
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: context
in: query
required: false
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
required: false
schema:
type: integer
description: Override the default excerpt length.
- name: password
in: query
required: false
schema:
type: string
description: The password for the post if it is password protected.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
post:
operationId: createWpV2TechnologyById
summary: POST /wp/v2/technology/{id}
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
date:
description: The date the post was published, in the site's timezone.
date_gmt:
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.
featured_media:
type: integer
description: The ID of the featured media for the post.
format:
type: string
enum:
- standard
- aside
- chat
- gallery
- link
- image
- quote
- status
- video
- audio
description: The format for the post.
template:
type: string
description: The theme file to use to display the post.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
put:
operationId: replaceWpV2TechnologyById
summary: PUT /wp/v2/technology/{id}
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
date:
description: The date the post was published, in the site's timezone.
date_gmt:
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.
featured_media:
type: integer
description: The ID of the featured media for the post.
format:
type: string
enum:
- standard
- aside
- chat
- gallery
- link
- image
- quote
- status
- video
- audio
description: The format for the post.
template:
type: string
description: The theme file to use to display the post.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
patch:
operationId: updateWpV2TechnologyById
summary: PATCH /wp/v2/technology/{id}
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
requestBody:
required: false
content:
application/json:
schema:
type: object
properties:
date:
description: The date the post was published, in the site's timezone.
date_gmt:
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.
featured_media:
type: integer
description: The ID of the featured media for the post.
format:
type: string
enum:
- standard
- aside
- chat
- gallery
- link
- image
- quote
- status
- video
- audio
description: The format for the post.
template:
type: string
description: The theme file to use to display the post.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
delete:
operationId: deleteWpV2TechnologyById
summary: DELETE /wp/v2/technology/{id}
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: force
in: query
required: false
schema:
type: boolean
default: false
description: Whether to bypass Trash and force deletion.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
/wp/v2/technology/{id}/autosaves:
get:
operationId: getWpV2TechnologyByIdAutosaves
summary: GET /wp/v2/technology/{id}/autosaves
tags:
- technology
parameters:
- name: id
in: path
required: true
schema:
type: string
- name: parent
in: query
required: false
schema:
type: integer
description: The ID for the parent of the autosave.
- name: context
in: query
required: false
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
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route / rest_post_invalid_id — route or resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
post:
operationId: createWpV2TechnologyByIdAutosaves
summary: POST /wp/v2/technology/{id}/autosaves
tags:
- technology
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:
description: The date the post was published, in the site's timezone.
date_gmt:
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.
featured_media:
type: integer
description: The ID of the featured media for the post.
format:
type: string
enum:
- standard
- aside
- chat
- gallery
- link
- image
- quote
- status
- video
- audio
description: The format for the post.
template:
type: string
description: The theme file to use to display the post.
responses:
'200':
description: Success
headers:
X-WP-Total:
description: Total number of matching records (collection routes)
schema:
type: integer
X-WP-TotalPages:
description: Total number of pages (collection routes)
schema:
type: integer
Link:
description: RFC 8288 pagination links (rel=next / rel=prev)
schema:
type: string
X-Robots-Tag:
description: noindex — observed on every wp/v2 response from www.greif.com
schema:
type: string
content:
application/json:
schema: {}
'400':
description: rest_invalid_param — a parameter failed validation
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'401':
description: rest_forbidden / rest_cannot_access — authentication required for this route
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'403':
description: rest_forbidden / rest_cannot_* — authenticated but not permitted
content:
application/json:
schema:
$ref: '
# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/greif/refs/heads/main/openapi/greif-technology-api-openapi.yml