action files_get_as2_stations_id { label: "Show As2 Station" description: "Show As2 Station" provider: files method: GET path: "/as2_stations/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Create As2 Station" properties: { domain: { type: "string" description: "The station's AS2 domain name." } hex_public_certificate_serial: { type: "string" description: "Serial of public certificate used for message security in hex format." } id: { type: "integer" format: "int32" description: "Id of the AS2 Station." } name: { type: "string" description: "The station's formal AS2 name." } private_key_md5: { type: "string" description: "MD5 hash of private key used for message security." } private_key_password_md5: { type: "string" description: "MD5 hash of private key password used for message security." } public_certificate_issuer: { type: "string" description: "Issuer of public certificate used for message security." } public_certificate_md5: { type: "string" description: "MD5 hash of public certificate used for message security." } public_certificate_not_after: { type: "string" description: "Not after value of public certificate used for message security." } public_certificate_not_before: { type: "string" description: "Not before value of public certificate used for message security." } public_certificate_serial: { type: "string" description: "Serial of public certificate used for message security." } public_certificate_subject: { type: "string" description: "Subject of public certificate used for message security." } uri: { type: "string" description: "Public URI for sending AS2 message to." } } } }