LDS Stake Portal
Callings

Update Calling

PUT
/callings/{calling_id}

Endpoint to update an existing calling. Expects a JSON body with the updated calling details. System-defined callings cannot be modified. The calling name must be unique if it's being updated.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

calling_id*Calling Id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X PUT "https://example.com/callings/0" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
null
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}