17.64. Payloads Create RPC¶
Requests the creation of a new payload.
rpc Create(PayloadsCreateRequest) returns (PayloadsCreateResponse);
17.64.1. Messages¶
- PayloadsCreateRequest
- PayloadsCreateResponse
17.65. PayloadsCreateRequest¶
message PayloadsCreateRequest { // Standard RPC request header. RequestHeader header = 1; }
17.65.1. Properties¶
17.65.1.2. PayloadsCreateResponse¶
message PayloadsCreateResponse { ResponseHeader header = 1; Identifier payload_id = 2; PayloadType type = 5; }
Clara Deploy SDK Models service will respond to any delete request with a PayloadsCreateResponse message. Requestors can use the response header to determine the result of their request.
17.65.2. Properties¶
17.65.2.2. payload_id¶
type: message
Unique identifier of the new payload.
See Identifier for additional details.