action osf_nodes_identifiers_list { label: "List all identifiers" description: "List all identifiers associated with a given node.\n#### Returns\nReturns a JSON object containing `data` and `links` keys.\n\nThe `data` key contains an array of identifiers. Each resource in the array is a separate identifier object.\n\nThe `links` key contains a dictionary of links that can be used for [pagination](#tag/Pagination).\n#### Filtering\n\nYou can optionally request that the response only include nodes that match your filters by utilizing the `filter` query parameter, e.g. https://api.osf.io/v2/nodes/ezcuj/identifiers/?filter[category]=ark\n\nIdentifiers may be filtered by their `category` e.g `ark` or `doi`." provider: osf method: GET path: "/nodes/{node_id}/identifiers/" encoding: json input: { type: "object" properties: { node_id: { type: "string" } } required: ["node_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }