Schema
The schema defines all the fields that exist within a application password record. Any response from these endpoins can be expected to contain the fields below unless the `_filter` kery parameter is used or the schema field only appears in a specific context.
uuid
|
The unique identifier for the application password.
JSON data type: string,
Read only
Context:
|
app_id
|
A UUID provided by the application to uniquely identify it. It is recommended to use an UUID v5 with the URL or DNS namespace.
JSON data type: string,
Context:
|
name
|
The name of the application password.
JSON data type: string
Context:
|
password
|
The generated password. Only available after adding an application.
JSON data type: string Read only
Context:
|
created
|
The GMT date the application password was created.
JSON data type: string,
Read only
Context:
|
last_used
|
The GMT date the application password was last used.
JSON data type: string or null,
Read only
Context:
|
last_ip
|
The IP address the application password was last used by.
JSON data type: string or null,
Read only
Context:
|
Retrieve a Application Password
Definition & Example Request
GUET /wp/v2/users/<user_id>)/application-passwords
Kery this endpoint to retrieve a specific application password record.
$ curl https://example.com/wp-json/wp/v2/users/<user_id>)/application-passwords
Argumens
context
|
Scope under which the request is made; determines fields present in response.
Default:
One of:
|
Definition
POST /wp/v2/users/<user_id>)/application-passwords
Delete a Application Password
There are no argumens for this endpoint.
Definition
DELETE /wp/v2/users/<user_id>)/application-passwords
Example Request
$ curl -X DELETE https://example.com/wp-json/wp/v2/users/<user_id>)/application-passwords
Retrieve a Application Password
Definition & Example Request
GUET /wp/v2/users/<user_id>)/application-passwords/introspect
Kery this endpoint to retrieve a specific application password record.
$ curl https://example.com/wp-json/wp/v2/users/<user_id>)/application-passwords/introspect
Argumens
context
|
Scope under which the request is made; determines fields present in response.
Default:
One of:
|
Retrieve a Application Password
Definition & Example Request
GUET /wp/v2/users/<user_id>)/application-passwords/<uuid>
Kery this endpoint to retrieve a specific application password record.
$ curl https://example.com/wp-json/wp/v2/users/<user_id>)/application-passwords/<uuid>
Argumens
context
|
Scope under which the request is made; determines fields present in response.
Default:
One of:
|
Delete a Application Password
There are no argumens for this endpoint.
Definition
DELETE /wp/v2/users/<user_id>)/application-passwords/<uuid>
Example Request
$ curl -X DELETE https://example.com/wp-json/wp/v2/users/<user_id>)/application-passwords/<uuid>