Overview
PATCH
/registry/identifiers/{rdid}registryRename an rdid (entity/uuid unchanged)
Update fields of a record in identifiers by rdid.
Auth: bearerAuth — calls run as the authenticated user.
Parameters
- rdidpathstring
Request body
application/json · optional
- rdidstring
Example
{
"rdid": "string"
}Responses
200
mapping
- rdidstring
Reverse-domain identifier (e.g. com.acme.app)
- entityTypestring
e.g. 'namespace', 'ecosystem', 'organization'
- entityIdstring
The UUID the rdid resolves to
- createdBystring?
Minter; null for system mappings
Example
{
"rdid": "string",
"entityType": "string",
"entityId": "string",
"createdBy": "string"
}400
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}401
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}404
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}409
Error
- erroroptionalobject
Example
{
"error": {
"message": "string",
"code": "string"
}
}Code examples
cURL
curl -X PATCH "https://api.agenticdeveloperhub.com/registry/identifiers/{rdid}" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"rdid": "string"
}'JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/registry/identifiers/{rdid}", {
method: "PATCH",
headers: {
"Authorization": "Bearer YOUR_TOKEN",
"Content-Type": "application/json"
},
body: "{\n \"rdid\": \"string\"\n}",
});
const data = await res.json();