Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 1.19 KB

File metadata and controls

29 lines (17 loc) · 1.19 KB

BlockchainRpcAuth

Discriminated RPC auth payload. Sent on create/update so backend can distinguish "no auth" from "field unchanged" on PUT updates. Credential values are stored inside declaredProperties and fetched at activation time; they are deliberately not carried through workflow context.

Properties

Name Type Description Notes
type TypeEnum Authentication scheme used when calling the RPC endpoint.
username String Username for RPC_AUTH_BASIC authentication. [optional]
password String Password for RPC_AUTH_BASIC authentication. [optional]
token String Bearer token for RPC_AUTH_BEARER authentication. [optional]
headerName String Header name for RPC_AUTH_CUSTOM_HEADER authentication. [optional]
headerValue String Header value for RPC_AUTH_CUSTOM_HEADER authentication. [optional]

Enum: TypeEnum

Name Value
RPC_AUTH_BASIC "RPC_AUTH_BASIC"
RPC_AUTH_BEARER "RPC_AUTH_BEARER"
RPC_AUTH_CUSTOM_HEADER "RPC_AUTH_CUSTOM_HEADER"