Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/SendTokenResponse.md
2025-02-03 22:09:17 +00:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
send-token-response SendTokenResponse SendTokenResponse SendTokenResponse powershellsdk
powershell
PowerShell
sdk
SendTokenResponse
SendTokenResponse
/tools/sdk/powershell/v3/models/send-token-response
SDK
Software Development Kit
SendTokenResponse
SendTokenResponse

SendTokenResponse

Properties

Name Type Description Notes
RequestId String The token request ID [optional]
Status Enum [ "SUCCESS", "FAILED" ] Status of sending token [optional]
ErrorMessage String Error messages from token send request [optional]

Examples

  • Prepare the resource
$SendTokenResponse = Initialize-PSSailpoint.V3SendTokenResponse  -RequestId 089899f13a8f4da7824996191587bab9 `
 -Status SUCCESS `
 -ErrorMessage Unable to sent text message
  • Convert the resource to JSON
$SendTokenResponse | ConvertTo-JSON

[Back to top]